Skip to content

Commit 1843327

Browse files
committed
fix
1 parent 818cc73 commit 1843327

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

uncoder-core/app/translator/platforms/chronicle/mapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class ChronicleLogSourceSignature(LogSourceSignature):
66
def is_suitable(self) -> bool:
7-
raise True
7+
return True
88

99
def __str__(self) -> str:
1010
return ""

uncoder-core/app/translator/platforms/logscale/mapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __str__(self) -> str:
1212
return " ".join((f"{key}={value}" for key, value in self._default_source.items() if value))
1313

1414
def is_suitable(self) -> bool:
15-
raise True
15+
return True
1616

1717

1818
class LogScaleMappings(BasePlatformMappings):

0 commit comments

Comments
 (0)