Guangsheng Bao commited on
Commit ·
6c30604
1
Parent(s): e6450ab
minor fix
Browse files- detector_base.py +1 -1
detector_base.py
CHANGED
|
@@ -22,7 +22,7 @@ class DetectorBase:
|
|
| 22 |
if type(val) == str and val.startswith('${') and val.endswith('}'):
|
| 23 |
val = os.getenv(val[2:-1])
|
| 24 |
config[key] = val
|
| 25 |
-
print(f'Config entry solved: {key} -> {val}')
|
| 26 |
return SimpleNamespace(**config)
|
| 27 |
|
| 28 |
def compute_crit(self, text):
|
|
|
|
| 22 |
if type(val) == str and val.startswith('${') and val.endswith('}'):
|
| 23 |
val = os.getenv(val[2:-1])
|
| 24 |
config[key] = val
|
| 25 |
+
# print(f'Config entry solved: {key} -> {val}')
|
| 26 |
return SimpleNamespace(**config)
|
| 27 |
|
| 28 |
def compute_crit(self, text):
|