I have generated the latest API!

This commit is contained in:
github-actions[bot]
2022-09-29 21:52:21 +00:00
parent 936e4adbf1
commit 34f46d5022
33 changed files with 494 additions and 108 deletions

View File

@ -3,7 +3,6 @@ from enum import Enum
class UnitMassFormat(str, Enum):
GRAM = 'gram'
KILOGRAM = 'kilogram'
METRIC_TON = 'metric_ton'
POUND = 'pound'
LONG_TON = 'long_ton'
@ -12,6 +11,7 @@ class UnitMassFormat(str, Enum):
OUNCE = 'ounce'
CARAT = 'carat'
SLUG = 'slug'
KILOGRAM = 'kilogram'
def __str__(self) -> str:
return str(self.value)