-
Notifications
You must be signed in to change notification settings - Fork 162
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
Reformatted dataprofiler/tests using black. #511
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may be a situation where isort
is only sorting and black
is dealing with formatting of the imports... just double check on that @jakleh
from dataprofiler.tests.profilers.profiler_options.test_boolean_option import \ | ||
TestBooleanOption | ||
from dataprofiler.tests.profilers.profiler_options.test_boolean_option import ( | ||
TestBooleanOption, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
simliar comment around isort
v black
🤔 @jakleh
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's solve this post.
from dataprofiler.tests.profilers.profiler_options.abstract_test_options import \ | ||
AbstractTestOptions | ||
from dataprofiler.tests.profilers.profiler_options.abstract_test_options import ( | ||
AbstractTestOptions, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
from dataprofiler.tests.profilers.profiler_options.test_base_option import \ | ||
TestBaseOption | ||
from dataprofiler.tests.profilers.profiler_options.test_base_option import ( | ||
TestBaseOption, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
from dataprofiler.tests.profilers.profiler_options.test_base_inspector_options import \ | ||
TestBaseInspectorOptions | ||
from dataprofiler.tests.profilers.profiler_options.test_base_inspector_options import ( | ||
TestBaseInspectorOptions, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
No description provided.