Skip to content
Merged
Changes from all commits
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
8 changes: 6 additions & 2 deletions Scripts/o2_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,12 @@ def test_file(self, path: str, content) -> bool:
words = line.split()
if len(words) < 2:
passed = False
print_error(path, i + 1, self.name,
"Failed to get the process function name. Keep it on the same line as the switch.")
print_error(
path,
i + 1,
self.name,
"Failed to get the process function name. Keep it on the same line as the switch.",
)
continue
names_functions.append(words[1][:-1])
# print_error(path, i + 1, self.name, f"Got process function name {words[1][:-1]}.")
Expand Down
Loading