Skip to content

Commit

Permalink
Merge pull request #86 from whs92/master
Browse files Browse the repository at this point in the history
Fixed syntax error typo
  • Loading branch information
chatcannon authored Dec 31, 2022
2 parents 9f51925 + ab65d28 commit 4bca2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galvani/BioLogic.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def fieldname_to_dtype(fieldname):
return (fieldname, np.float_)
elif fieldname in ("Q charge/discharge/mA.h", "step time/s",
"Q charge/mA.h", "Q discharge/mA.h",
"Temperature/°C", "Efficiency/%", "Capacity/mA.h")
"Temperature/°C", "Efficiency/%", "Capacity/mA.h"):
return (fieldname, np.float_)
elif fieldname in ("cycle number", "I Range", "Ns", "half cycle"):
return (fieldname, np.int_)
Expand Down

0 comments on commit 4bca2ac

Please sign in to comment.