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:
parent
68e3149d84
commit
165237f983
1 changed files with 3 additions and 1 deletions
|
@ -13,7 +13,6 @@ bibtexparser = {version = ">=2.0.0b1", allow-prereleases = true}
|
|||
jupyter = "^1.0.0"
|
||||
jupyter-cache = "^0.6.1"
|
||||
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pynvim = "^0.4.3"
|
||||
pyperclip = "^1.8.2"
|
||||
|
@ -21,3 +20,6 @@ pyperclip = "^1.8.2"
|
|||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.ruff]
|
||||
ignore = ["E402"]
|
||||
|
|
Loading…
Reference in a new issue