Skip to content

Commit

Permalink
Remove piped type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
PlethoraChutney committed Mar 20, 2023
1 parent ed1c97a commit 638bc2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/appia/processors/hplc.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def flow_rate(self) -> float:
return self._flow_rate

@flow_rate.setter
def flow_rate(self, in_flow_rate:float|None):
def flow_rate(self, in_flow_rate:float):
if in_flow_rate is None:
self._flow_rate = None
else:
Expand Down Expand Up @@ -570,5 +570,5 @@ def process_file(self):
var_name = 'Normalization',
value_name = 'Value'
)

self.df = df

0 comments on commit 638bc2e

Please sign in to comment.