Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-pq committed Nov 13, 2024
1 parent 3413d1a commit 637f1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyedflib/edfwriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ def setPhysicalMaximum(self, edfsignal: int, physical_maximum: Union[int, float]
self.channels[edfsignal]['physical_max'] = physical_maximum
self.update_header()

def setPhysicalMinimum(self, edfsignal: int, physical_minimum: Union[in, float]) -> None:
def setPhysicalMinimum(self, edfsignal: int, physical_minimum: Union[int, float]) -> None:
"""
Sets the physical_minimum of signal edfsignal.
Expand Down

0 comments on commit 637f1bf

Please sign in to comment.