master > master: code py - imports

This commit is contained in:
RD 2022-06-09 01:50:36 +02:00
parent 96bb225978
commit 07cf57eeab
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,7 @@
import math; import math;
import numpy as np; import numpy as np;
import pandas as pd;
import random; import random;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -16,5 +17,6 @@ import random;
__all__ = [ __all__ = [
'math', 'math',
'np', 'np',
'pd',
'random', 'random',
]; ];

View File

@ -5,14 +5,15 @@
# IMPORTS # IMPORTS
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
from enum import Enum;
from types import TracebackType; from types import TracebackType;
from typing import Any; from typing import Any;
from typing import Callable; from typing import Callable;
from typing import Dict; from typing import Dict;
from typing import Generator; from typing import Generator;
from typing import Generic; from typing import Generic;
from typing import List; from typing import List;
from typing import Optional;
from typing import Tuple; from typing import Tuple;
from typing import Type; from typing import Type;
from typing import TypeVar; from typing import TypeVar;
@ -24,6 +25,7 @@ from nptyping import NDArray;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
__all__ = [ __all__ = [
'Enum',
'TracebackType', 'TracebackType',
'Any', 'Any',
'Callable', 'Callable',
@ -31,6 +33,7 @@ __all__ = [
'Generator', 'Generator',
'Generic', 'Generic',
'List', 'List',
'Optional',
'Tuple', 'Tuple',
'Type', 'Type',
'TypeVar', 'TypeVar',