From f1b1bd484cfa8681c680ca14072034d12dc038f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Mon, 29 Jan 2024 10:02:46 +0100 Subject: [PATCH] Updating formatting according to black 24.1 --- newsfragments/422.misc.rst | 1 + tests/app.py | 1 + tests/conftest.py | 1 + tests/test_fixture.py | 1 + 4 files changed, 4 insertions(+) create mode 100644 newsfragments/422.misc.rst diff --git a/newsfragments/422.misc.rst b/newsfragments/422.misc.rst new file mode 100644 index 0000000..c818bcc --- /dev/null +++ b/newsfragments/422.misc.rst @@ -0,0 +1 @@ +Adjusted code formatting to black 24.1 \ No newline at end of file diff --git a/tests/app.py b/tests/app.py index 849ae3a..093072a 100644 --- a/tests/app.py +++ b/tests/app.py @@ -1,4 +1,5 @@ """Define dummy app for tests.""" + from typing import Any, Dict from pyramid.config import Configurator diff --git a/tests/conftest.py b/tests/conftest.py index 6c10c41..3d4ecb2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,2 +1,3 @@ """Conftest module.""" + from pytest_pyramid.plugin import * # noqa: F403 diff --git a/tests/test_fixture.py b/tests/test_fixture.py index 11029ac..d78888e 100644 --- a/tests/test_fixture.py +++ b/tests/test_fixture.py @@ -1,4 +1,5 @@ """Testing fixtures.""" + import pytest from _pytest.fixtures import FixtureRequest from pyramid.config import Configurator