Skip to content

Commit

Permalink
Fix typehinting
Browse files Browse the repository at this point in the history
  • Loading branch information
GigantPro committed Jul 29, 2023
1 parent a5e8ed2 commit 2f2bf19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frozenclass/dataparser/types_module.py
Expand Up @@ -29,7 +29,7 @@ def get_type_by_saved_type(type_data: str) -> Union[Any, None]:
return mod

def create_class_instance(
class_: Callable, vars: dict[str:Any]
class_: Callable, vars: dict[str, Any]
) -> Any:
def _get_var_with_type(var_description: dict) -> tuple[str, Any]:
type_ = get_type_by_saved_type(var_description["class_path"])
Expand Down

0 comments on commit 2f2bf19

Please sign in to comment.