Skip to content

Commit

Permalink
Adhere to PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
p-snft committed Oct 19, 2023
1 parent e4bf11b commit 82190e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oemof/network/network/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Entity:

def __init__(self, label=None, custom_properties=None, **kwargs):
self._label = label
if custom_properties == None:
if custom_properties is None:
custom_properties = {}
self.custom_properties = custom_properties
self._inputs = Inputs(self)
Expand Down

0 comments on commit 82190e7

Please sign in to comment.