"B904",# Within an `except` clause, raise exceptions with `raise ... from err` or `raise ... from None` to distinguish them from errors in exception handling
"B008",# Do not perform function call `_try_import_moddb_library` in argument defaults; instead, perform the call within the function, or read the default from a module-level singleton variable
"ARG005",# Unused lambda argument: `e`
"ARG001",# Unused function argument: `args`
"PERF402",# Use `list` or `list.copy` to create a copy of a list
"B009",# Do not call `getattr` with a constant attribute value. It is not any safer than normal property access.
"A002",# Argument `type` is shadowing a Python builtin
"ARG004",# Unused static method argument: `x`
"B020",# Loop control variable `upstream_runners` overrides iterable it iterates
"B018",# Found useless expression. Either assign it to a variable or remove it