-
Notifications
You must be signed in to change notification settings - Fork 653
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
REFACTOR-#7242: Add type hints for modin/core/dataframe/algebra/
#7243
Conversation
91543e8
to
130f489
Compare
groupby_kwargs: dict, | ||
agg_args: list, | ||
agg_kwargs: dict, | ||
other: Optional[pandas.DataFrame] = None, | ||
by=None, |
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.
Why is this untouched?
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.
Some arguments are very complex in terms of the types they accept. I leave them untouched, because for now I am trying to improve code navigation with the least effort, so as not to spend a lot of time on it and be able to do it as I work on another task (but in the same place in the code).
@@ -50,6 +52,10 @@ | |||
|
|||
from . import doc_utils | |||
|
|||
if TYPE_CHECKING: | |||
# TODO: should be ModinDataframe |
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.
When is this going to be fixed?
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.
…/algebra/' Signed-off-by: Anatoly Myachev <[email protected]>
Signed-off-by: Anatoly Myachev <[email protected]>
Signed-off-by: Anatoly Myachev <[email protected]>
@YarShev ready for review |
What do these changes do?
flake8 modin/ asv_bench/benchmarks scripts/doc_checker.py
black --check modin/ asv_bench/benchmarks scripts/doc_checker.py
git commit -s
modin/core/dataframe/algebra/
#7242docs/development/architecture.rst
is up-to-date