-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(internal): reformat imports (#939)
- Loading branch information
1 parent
7ab050e
commit ec65124
Showing
54 changed files
with
384 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
from .numpy_proxy import numpy as numpy | ||
from .numpy_proxy import has_numpy as has_numpy | ||
from .numpy_proxy import numpy as numpy, has_numpy as has_numpy | ||
from .pandas_proxy import pandas as pandas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,41 @@ | ||
from ._proxy import LazyProxy as LazyProxy | ||
from ._utils import flatten as flatten | ||
from ._utils import is_dict as is_dict | ||
from ._utils import is_list as is_list | ||
from ._utils import is_given as is_given | ||
from ._utils import is_tuple as is_tuple | ||
from ._utils import is_mapping as is_mapping | ||
from ._utils import is_tuple_t as is_tuple_t | ||
from ._utils import parse_date as parse_date | ||
from ._utils import is_sequence as is_sequence | ||
from ._utils import coerce_float as coerce_float | ||
from ._utils import is_list_type as is_list_type | ||
from ._utils import is_mapping_t as is_mapping_t | ||
from ._utils import removeprefix as removeprefix | ||
from ._utils import removesuffix as removesuffix | ||
from ._utils import extract_files as extract_files | ||
from ._utils import is_sequence_t as is_sequence_t | ||
from ._utils import is_union_type as is_union_type | ||
from ._utils import required_args as required_args | ||
from ._utils import coerce_boolean as coerce_boolean | ||
from ._utils import coerce_integer as coerce_integer | ||
from ._utils import file_from_path as file_from_path | ||
from ._utils import parse_datetime as parse_datetime | ||
from ._utils import strip_not_given as strip_not_given | ||
from ._utils import deepcopy_minimal as deepcopy_minimal | ||
from ._utils import extract_type_arg as extract_type_arg | ||
from ._utils import is_required_type as is_required_type | ||
from ._utils import get_async_library as get_async_library | ||
from ._utils import is_annotated_type as is_annotated_type | ||
from ._utils import maybe_coerce_float as maybe_coerce_float | ||
from ._utils import get_required_header as get_required_header | ||
from ._utils import maybe_coerce_boolean as maybe_coerce_boolean | ||
from ._utils import maybe_coerce_integer as maybe_coerce_integer | ||
from ._utils import strip_annotated_type as strip_annotated_type | ||
from ._transform import PropertyInfo as PropertyInfo | ||
from ._transform import transform as transform | ||
from ._transform import maybe_transform as maybe_transform | ||
from ._utils import ( | ||
flatten as flatten, | ||
is_dict as is_dict, | ||
is_list as is_list, | ||
is_given as is_given, | ||
is_tuple as is_tuple, | ||
is_mapping as is_mapping, | ||
is_tuple_t as is_tuple_t, | ||
parse_date as parse_date, | ||
is_sequence as is_sequence, | ||
coerce_float as coerce_float, | ||
is_list_type as is_list_type, | ||
is_mapping_t as is_mapping_t, | ||
removeprefix as removeprefix, | ||
removesuffix as removesuffix, | ||
extract_files as extract_files, | ||
is_sequence_t as is_sequence_t, | ||
is_union_type as is_union_type, | ||
required_args as required_args, | ||
coerce_boolean as coerce_boolean, | ||
coerce_integer as coerce_integer, | ||
file_from_path as file_from_path, | ||
parse_datetime as parse_datetime, | ||
strip_not_given as strip_not_given, | ||
deepcopy_minimal as deepcopy_minimal, | ||
extract_type_arg as extract_type_arg, | ||
is_required_type as is_required_type, | ||
get_async_library as get_async_library, | ||
is_annotated_type as is_annotated_type, | ||
maybe_coerce_float as maybe_coerce_float, | ||
get_required_header as get_required_header, | ||
maybe_coerce_boolean as maybe_coerce_boolean, | ||
maybe_coerce_integer as maybe_coerce_integer, | ||
strip_annotated_type as strip_annotated_type, | ||
) | ||
from ._transform import ( | ||
PropertyInfo as PropertyInfo, | ||
transform as transform, | ||
maybe_transform as maybe_transform, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.