We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5302847 commit baf4f91Copy full SHA for baf4f91
src/thread/utils/config.py
@@ -4,16 +4,16 @@ class Settings:
4
`Non Instantiable`
5
"""
6
7
- VERBOSITY: bool = True
8
- GRACEFUL_EXIT_ENABLED: bool = True
+ VERBOSITY: bool = True
+ GRACEFUL_EXIT_ENABLED: bool = True
9
10
def __init__(self):
11
raise NotImplementedError('This class is not instantiable')
12
13
- @staticmethod
14
- def set_graceful_exit(enabled: bool = True):
15
- Settings.GRACEFUL_EXIT_ENABLED = enabled
+ @staticmethod
+ def set_graceful_exit(enabled: bool = True):
+ Settings.GRACEFUL_EXIT_ENABLED = enabled
16
17
18
- def set_verbosity(verbosity: bool = True):
19
- Settings.VERBOSITY = verbosity
+ def set_verbosity(verbosity: bool = True):
+ Settings.VERBOSITY = verbosity
0 commit comments