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:
10
kittycad/models/unit_radioactivity_format.py
Normal file
10
kittycad/models/unit_radioactivity_format.py
Normal file
@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitRadioactivityFormat(str, Enum):
|
||||
BECQUEREL = 'becquerel'
|
||||
CURIE = 'curie'
|
||||
RUTHERFORD = 'rutherford'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user