Skip to content

Commit

Permalink
quick patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Morris committed May 10, 2024
1 parent 0c8c29d commit 5449ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blop/dofs.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def summary(self) -> pd.Series:
value = f"[{value[0]:.02e}, {value[1]:.02e}]"
else:
value = f"({value[0]:.02e}, {value[1]:.02e})"
series[attr] = value if value else ""
series[attr] = value if value is not None else ""
return series

@property
Expand Down

0 comments on commit 5449ecc

Please sign in to comment.