Skip to content

Commit baf4f91

Browse files
style: Code formatting
1 parent 5302847 commit baf4f91

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/thread/utils/config.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ class Settings:
44
`Non Instantiable`
55
"""
66

7-
VERBOSITY: bool = True
8-
GRACEFUL_EXIT_ENABLED: bool = True
7+
VERBOSITY: bool = True
8+
GRACEFUL_EXIT_ENABLED: bool = True
99

1010
def __init__(self):
1111
raise NotImplementedError('This class is not instantiable')
1212

13-
@staticmethod
14-
def set_graceful_exit(enabled: bool = True):
15-
Settings.GRACEFUL_EXIT_ENABLED = enabled
13+
@staticmethod
14+
def set_graceful_exit(enabled: bool = True):
15+
Settings.GRACEFUL_EXIT_ENABLED = enabled
1616

17-
@staticmethod
18-
def set_verbosity(verbosity: bool = True):
19-
Settings.VERBOSITY = verbosity
17+
@staticmethod
18+
def set_verbosity(verbosity: bool = True):
19+
Settings.VERBOSITY = verbosity

0 commit comments

Comments
 (0)