From ce7cf09633aa4523635ecdc808b1c3ab48fcd576 Mon Sep 17 00:00:00 2001 From: Ryan Snodgrass Date: Wed, 22 May 2024 21:48:13 -0400 Subject: [PATCH] update --- pyavcontrol/library/__init__.py | 3 ++- pyproject.toml | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pyavcontrol/library/__init__.py b/pyavcontrol/library/__init__.py index 4d37085..677b616 100644 --- a/pyavcontrol/library/__init__.py +++ b/pyavcontrol/library/__init__.py @@ -1,5 +1,6 @@ from pyavcontrol.const import DEFAULT_MODEL_LIBRARIES -from pyavcontrol.library.model import DeviceModel + +# from pyavcontrol.library.model import DeviceModel class DeviceModelLibrary: diff --git a/pyproject.toml b/pyproject.toml index 79c9619..0846ebb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,6 +38,10 @@ balanced_wrapping = true [tool.ruff] line-length = 88 indent-width = 4 +lint.ignore = [ "F403", "F405" ] + +[tool.ruff.lint.per-file-ignores] +"__init__.py" = [ "F401" ] [tool.ruff.format] quote-style = "single" # Use a single quote instead of double