(string)
| 34 | # A method to showcase time effect |
| 35 | @staticmethod |
| 36 | def time_gap(string): |
| 37 | print(string, end="") |
| 38 | time.sleep(1) |
| 39 | print(".", end="") |
| 40 | time.sleep(1) |
| 41 | print(".") |
| 42 | |
| 43 | # A method to import the wallpapers from src folder(dir_src) |
| 44 | @staticmethod |
no outgoing calls
no test coverage detected