Name refactoring

This commit is contained in:
Eden Kirin
2023-02-17 09:43:33 +01:00
parent ba64cd947a
commit 16c99a1efc
4 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
from lib.gen_1 import (
from lib.generics_3_without_generics import (
Employee,
EmployeeContainer,
Partner,

View File

@ -1,9 +1,8 @@
from lib.gen_2 import (
from lib.generics_4_with_generics import (
Employee,
EmployeeContainer,
Partner,
PartnerContainer,
UserContainer,
)

View File

@ -1,5 +1,5 @@
from dataclasses import dataclass
from typing import Generic, List, Optional, TypeVar
from typing import List, Optional, TypeVar
@dataclass