This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from pathlib import Path | |
| def get_project_root() -> str: | |
| """ | |
| This fx is super important! | |
| Literally everything acts up if this isn't good. | |
| """ | |
| if getattr(sys, 'frozen', False): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| This test is to illustrate that child classes have a different base class object as their parent. | |
| """ | |
| class Monitor: | |
| reqs_sent = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SKK_IS_GOOD |
OlderNewer