Merge pull request 'ruff-3-arg-fixes' (#4934) from ruff-3-arg-fixes into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4934
This commit is contained in:
Mic92
2025-08-25 12:54:04 +00:00
52 changed files with 128 additions and 85 deletions

View File

@@ -331,7 +331,7 @@ if __name__ == "__main__":
def concatenate(a: str, b: str) -> str:
time.sleep(1)
msg = "Hello World"
msg = a + b
raise ClanError(msg)
with runtime: