chore: Ignore top level imports warning

Since we import things at any point in the file,
in any potential cell, we can just ignore the
flake8 ruff warning about it.
This commit is contained in:
Marty Oehme 2023-09-28 12:00:26 +02:00
parent 68e3149d84
commit 165237f983
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -13,7 +13,6 @@ bibtexparser = {version = ">=2.0.0b1", allow-prereleases = true}
jupyter = "^1.0.0" jupyter = "^1.0.0"
jupyter-cache = "^0.6.1" jupyter-cache = "^0.6.1"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
pynvim = "^0.4.3" pynvim = "^0.4.3"
pyperclip = "^1.8.2" pyperclip = "^1.8.2"
@ -21,3 +20,6 @@ pyperclip = "^1.8.2"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
[tool.ruff]
ignore = ["E402"]