* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
11 lines
206 B
Python
11 lines
206 B
Python
from enum import Enum
|
|
|
|
|
|
class UnitRadioactivityFormat(str, Enum):
|
|
BECQUEREL = 'becquerel'
|
|
CURIE = 'curie'
|
|
RUTHERFORD = 'rutherford'
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|