diff --git a/.woodpecker.yml b/.woodpecker.yml index d6ffe9a..ccc0226 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -2,7 +2,7 @@ pipeline: # =====TESTING===== test-backend: # Alpine version doesn't have make - image: python:3.8 + image: python:3.9 pull: true group: test commands: @@ -23,7 +23,7 @@ pipeline: # =====LINTING===== lint-backend: - image: python:3.8 + image: python:3.9 group: lint commands: - make lint diff --git a/app/__main__.py b/app/__main__.py index f2f91da..5e7f0af 100644 --- a/app/__main__.py +++ b/app/__main__.py @@ -14,5 +14,4 @@ async def frontend(path): if __name__ == "__main__": - print(app.url_map) app.run(host="0.0.0.0") diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index a8f43fe..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,2 +0,0 @@ -[tool.black] -line-length = 79