Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
alexvolha committed Jul 31, 2024
commit 18433274121d9acccd3a3660d4f98e832e63bcb4
2 changes: 1 addition & 1 deletion uncoder-core/app/translator/platforms/chronicle/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class ChronicleLogSourceSignature(LogSourceSignature):
def is_suitable(self) -> bool:
raise True
return True

def __str__(self) -> str:
return ""
Expand Down
2 changes: 1 addition & 1 deletion uncoder-core/app/translator/platforms/logscale/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __str__(self) -> str:
return " ".join((f"{key}={value}" for key, value in self._default_source.items() if value))

def is_suitable(self) -> bool:
raise True
return True


class LogScaleMappings(BasePlatformMappings):
Expand Down