Skip to content

Commit

Permalink
Adhere to Black
Browse files Browse the repository at this point in the history
  • Loading branch information
p-snft committed Jan 11, 2024
1 parent 67fe5a4 commit ee184d5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/oemof/network/energy_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

import blinker
import dill as pickle

from oemof.tools import debugging

from oemof.network.groupings import DEFAULT as BY_UID
Expand Down
2 changes: 1 addition & 1 deletion tests/test_energy_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down

0 comments on commit ee184d5

Please sign in to comment.