some commit

This commit is contained in:
沈瑗杰 2021-09-28 16:32:38 +08:00
parent d858ff5ac0
commit bed01bad82
3 changed files with 24 additions and 10 deletions

View File

@ -11,11 +11,11 @@ github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
from .Exp import TexturesError, LanguageError
from .delivery import Delivery
from .new_thread import new_thread
from .tools import config
from .translate import Lang
from .delivery import Delivery
from .new_thread import new_thread
from .Exp import TexturesError, LanguageError
__all__ = ['TexturesError',
'LanguageError',
@ -23,3 +23,4 @@ __all__ = ['TexturesError',
'Delivery',
'config',
'Lang']

View File

@ -17,7 +17,7 @@ import decimal
from typing import List, Optional
from decimal import Decimal
from Difficult_Rocket.api
# linear_algebra

View File

@ -11,18 +11,31 @@ github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
__all__ = ['Newton',
'Metre',
'Second']
class Units:
"""
base class of all units
"""
def __init__(self):
pass
class Newton:
class _Newton(Units):
pass
class Metre:
newton = _Newton()
class _Metre(Units):
pass
class Second:
metre = _Metre()
class _Second(Units):
pass
second = _Second()