We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc7dd08 commit 83eff15Copy full SHA for 83eff15
1 file changed
lenapy/utils/harmo.py
@@ -1261,7 +1261,7 @@ def _prefix_parser(unit: str) -> float:
1261
("c", "centi"): 1e2,
1262
("milli", "mm"): 1e3, # cannot accept 'm' because it is used for meter unit
1263
("µ", "u", "micro"): 1e6,
1264
- ("n", "nano"): 1e9,
+ ("nano",): 1e9, # cannot accept 'n' because it is used for norm unit
1265
("pico",): 1e12, # cannot accept 'p' because it is used for pressure unit
1266
}
1267
0 commit comments