From ee184d50bafdb51e6507fff29fd8b2d7a6840c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Sch=C3=B6nfeldt?= Date: Thu, 11 Jan 2024 17:47:29 +0100 Subject: [PATCH] Adhere to Black --- src/oemof/network/energy_system.py | 1 - tests/test_energy_system.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/oemof/network/energy_system.py b/src/oemof/network/energy_system.py index 2dbfba7..b2431b4 100644 --- a/src/oemof/network/energy_system.py +++ b/src/oemof/network/energy_system.py @@ -22,7 +22,6 @@ import blinker import dill as pickle - from oemof.tools import debugging from oemof.network.groupings import DEFAULT as BY_UID diff --git a/tests/test_energy_system.py b/tests/test_energy_system.py index 3224f0c..e016d4b 100644 --- a/tests/test_energy_system.py +++ b/tests/test_energy_system.py @@ -58,7 +58,7 @@ def test_node_access_warning(self): node_label = "label" self.es.add(Node(node_label)) with pytest.warns( - match='API to access nodes by label is experimental' + match="API to access nodes by label is experimental" ): _ = es.node[node_label]