Update api spec (#52)

* 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-01-27 14:50:50 -08:00
committed by GitHub
parent 9fe98c9185
commit 95f22c849d
35 changed files with 2812 additions and 50 deletions

View File

@ -4,9 +4,12 @@ from enum import Enum
class UnitEnergyFormat(str, Enum):
JOULE = 'joule'
CALORIE = 'calorie'
KILOWATT_HOUR = 'kilowatt_hour'
WATT_HOUR = 'watt_hour'
BRITISH_THERMAL_UNIT = 'british_thermal_unit'
BRITISH_THERMAL_UNIT_ISO = 'british_thermal_unit_iso'
BRITISH_THERMAL_UNIT59 = 'british_thermal_unit59'
THERM = 'therm'
FOOT_POUND = 'foot_pound'
def __str__(self) -> str: