Skip to content

Commit

Permalink
Merge pull request #66 from OmenApps/underscore_name_fix
Browse files Browse the repository at this point in the history
Fix: Correcting factor names to use dash instead of underscore.
  • Loading branch information
JackAtOmenApps authored May 5, 2021
2 parents ffb269c + 3d6693f commit 2fb3b95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions measurement/measures/mechanics.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ class VolumetricFlowRate(AbstractMeasure, metaclass=FractionMeasureBase):
cms = Unit("1", ["cumecs", "CMS"])
cfs = Unit(1 / decimal.Decimal("35.31466672148859025043801035"), ["CFS"])

miners_inch_50 = Unit("566.33693184e-6", ["mi_50"])
miners_inch_40 = Unit("707.9211648e-6", ["mi_40"])
miners_inch_38_4 = Unit("737.41788e-6", ["mi_38_4"])
miners_inch_50 = Unit("566.33693184e-6", ["mi-50"])
miners_inch_40 = Unit("707.9211648e-6", ["mi-40"])
miners_inch_38_4 = Unit("737.41788e-6", ["mi-38-4"])

@classmethod
def _attr_to_unit(cls, name):
Expand Down

0 comments on commit 2fb3b95

Please sign in to comment.