Skip to content

Commit

Permalink
style: remove unnecessary syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
aaraney committed Jul 25, 2024
1 parent 60e887a commit 726e43d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/hypy/hydrolocation/hydrolocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class HydroLocationType(Enum):
waterfall = auto()
weir = auto()

class HydroLocation():
class HydroLocation:
"""
Implementation of the HY Features HydroLocation concept
"""
__slots__ = ['_shape', '_type', '_referenced_position', '_realized_nexus']
__slots__ = ('_shape', '_type', '_referenced_position', '_realized_nexus')

def __init__(self,
realized_nexus: str,
Expand Down

0 comments on commit 726e43d

Please sign in to comment.