Fix/ignore all remaining errors.

This commit is contained in:
L. Kärkkäinen 2023-10-25 02:03:44 +01:00
parent 9ae25e6744
commit ec35f5f2c8
5 changed files with 8 additions and 5 deletions

View File

@ -19,7 +19,7 @@ import sys
root_directory = os.path.dirname(os.getcwd())
sys.path.insert(0, root_directory)
import sanic
import sanic # noqa: E402
# -- General configuration ------------------------------------------------

View File

@ -3,8 +3,11 @@ requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 79
extend-select = ["I"]
ignore = ["D100", "D101", "D102", "D103", "E402", "E741", "F811", "F821"]
line-length = 79
show-source = true
show-fixes = true
[tool.ruff.isort]
known-first-party = ["sanic"]

View File

@ -81,7 +81,7 @@ def _run_shell_command(command: list):
output, error = process.communicate()
return_code = process.returncode
return output.decode("utf-8"), error, return_code
except:
except Exception:
return None, None, -1

View File

@ -169,7 +169,7 @@ def test_exception_handler_lookup(exception_handler_app: Sanic):
pass
try:
ModuleNotFoundError
ModuleNotFoundError # noqa: F823
except Exception:
class ModuleNotFoundError(ImportError):

View File

@ -6,7 +6,7 @@ from sanic import Sanic
try:
import sanic_ext
import sanic_ext # noqa: F401
SANIC_EXT_IN_ENV = True
except ImportError: