From 675835a56b35d779bda5f9542d4a0c2ca977dd8f Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Tue, 4 Jun 2024 20:05:41 +0200 Subject: [PATCH] moved flake8 configuration --- .flake8 | 2 -- pyproject.toml | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 .flake8 diff --git a/.flake8 b/.flake8 deleted file mode 100644 index 3c4d656..0000000 --- a/.flake8 +++ /dev/null @@ -1,2 +0,0 @@ -[flake8] -per-file-ignores = __init__.py:F401 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 59c7f6a..5dc6272 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,8 @@ python = "^3.12" flake8 = "^7.0.0" mypy = "^1.8.0" types-pillow = "^10.2.0.20240213" +types-requests = "^2.32.0.20240602" +types-retry = "^0.9.9.4" [tool.poetry.group.dev.dependencies] @@ -48,3 +50,6 @@ dash-auth = "^2.2.0" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" + +[flake8] +per-file-ignores = "__init__.py:F401"