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 818cc73 commit 1843327Copy full SHA for 1843327
uncoder-core/app/translator/platforms/chronicle/mapping.py
@@ -4,7 +4,7 @@
4
5
class ChronicleLogSourceSignature(LogSourceSignature):
6
def is_suitable(self) -> bool:
7
- raise True
+ return True
8
9
def __str__(self) -> str:
10
return ""
uncoder-core/app/translator/platforms/logscale/mapping.py
@@ -12,7 +12,7 @@ def __str__(self) -> str:
12
return " ".join((f"{key}={value}" for key, value in self._default_source.items() if value))
13
14
15
16
17
18
class LogScaleMappings(BasePlatformMappings):
0 commit comments