Update api spec (#162)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Jess Frazelle
2023-11-27 16:01:20 -08:00
committed by GitHub
parent 4f29f55190
commit 6b2fe3decb
287 changed files with 22901 additions and 24513 deletions

View File

@ -2,21 +2,22 @@ from enum import Enum
class UnitPressure(str, Enum):
""" 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'
"""The valid types of pressure units.""" # noqa: E501
def __str__(self) -> str:
return str(self.value)
"""# 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)