clear the screen in case of GNU/Linux or windows
()
| 1027 | |
| 1028 | |
| 1029 | def clearScr(): |
| 1030 | """ |
| 1031 | clear the screen in case of GNU/Linux or |
| 1032 | windows |
| 1033 | """ |
| 1034 | if system() == 'Linux': |
| 1035 | os.system('clear') |
| 1036 | if system() == 'Windows': |
| 1037 | os.system('cls') |
| 1038 | |
| 1039 | |
| 1040 | class Fscan: |
no outgoing calls
no test coverage detected