Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-09-29 16:05:40 -07:00
parent 31cd9e532d
commit 12c164620b
268 changed files with 22464 additions and 18287 deletions

View File

@ -2,22 +2,21 @@ from enum import Enum
class UnitPressure(str, Enum):
"""The valid types of pressure units.""" # noqa: E501
""" The valid types of pressure units. """ # noqa: E501
"""# Atmospheres <https://en.wikipedia.org/wiki/Standard_atmosphere_(unit)> """ # noqa: E501
ATMOSPHERES = 'atmospheres'
"""# Bars <https://en.wikipedia.org/wiki/Bar_(unit)> """ # noqa: E501
BARS = 'bars'
"""# Hectopascals <https://en.wikipedia.org/wiki/Hectopascal> """ # noqa: E501
HECTOPASCALS = 'hectopascals'
"""# Kilopascals <https://en.wikipedia.org/wiki/Kilopascal> """ # noqa: E501
KILOPASCALS = 'kilopascals'
"""# Millibars <https://en.wikipedia.org/wiki/Bar_(unit)> """ # noqa: E501
MILLIBARS = 'millibars'
"""# Pascals <https://en.wikipedia.org/wiki/Pascal_(unit)> """ # noqa: E501
PASCALS = 'pascals'
"""# Pounds per square inch (PSI) - <https://en.wikipedia.org/wiki/Pound_per_square_inch> """ # noqa: E501
PSI = 'psi'
"""# Atmospheres <https://en.wikipedia.org/wiki/Standard_atmosphere_(unit)> """ # noqa: E501
ATMOSPHERES = "atmospheres"
"""# Bars <https://en.wikipedia.org/wiki/Bar_(unit)> """ # noqa: E501
BARS = "bars"
"""# Hectopascals <https://en.wikipedia.org/wiki/Hectopascal> """ # noqa: E501
HECTOPASCALS = "hectopascals"
"""# Kilopascals <https://en.wikipedia.org/wiki/Kilopascal> """ # noqa: E501
KILOPASCALS = "kilopascals"
"""# Millibars <https://en.wikipedia.org/wiki/Bar_(unit)> """ # noqa: E501
MILLIBARS = "millibars"
"""# Pascals <https://en.wikipedia.org/wiki/Pascal_(unit)> """ # noqa: E501
PASCALS = "pascals"
"""# Pounds per square inch (PSI) - <https://en.wikipedia.org/wiki/Pound_per_square_inch> """ # noqa: E501
PSI = "psi"
def __str__(self) -> str:
return str(self.value)
def __str__(self) -> str:
return str(self.value)