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

@ -2,11 +2,9 @@ from enum import Enum
class UnitLengthFormat(str, Enum):
MILLIMETER = 'millimeter'
CENTIMETER = 'centimeter'
METER = 'meter'
KILOMTER = 'kilomter'
FOOT = 'foot'
MIL = 'mil'
INCH = 'inch'
MILE = 'mile'
NAUTICAL_MILE = 'nautical_mile'
@ -19,6 +17,9 @@ class UnitLengthFormat(str, Enum):
LEAGUE = 'league'
NAUTICAL_LEAGUE = 'nautical_league'
YARD = 'yard'
MILLIMETER = 'millimeter'
CENTIMETER = 'centimeter'
KILOMETER = 'kilometer'
def __str__(self) -> str:
return str(self.value)