8000 Partialy fix issue #23334 - isort pandas/core/dtypes directory by alexander-ponomaroff · Pull Request #23336 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Partialy fix issue #23334 - isort pandas/core/dtypes directory #23336

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Oct 31, 2018
Merged
Prev Previous commit
Next Next commit
Fix Line 5:80: E501 line too long (102 > 79 characters) issue
  • Loading branch information
alexander-ponomaroff committed Oct 25, 2018
commit f1160c1236c00d64363e3913756d04462f63c891
3 changes: 2 additions & 1 deletion pandas/core/dtypes/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

import sys

from .common import ( # categorical; interval; datetimelike; string-like; sparse; numeric types; like
# categorical; interval; datetimelike; string-like; sparse; numeric types; like
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i am not sure of the value of this comment

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment was generated by isort, will delete.

from .common import (
is_array_like, is_bool, is_bool_dtype, is_categorical,
is_categorical_dtype, is_complex, is_complex_dtype,
is_datetime64_any_dtype, is_datetime64_dtype, is_datetime64_ns_dtype,
Expand Down
0