-
Notifications
You must be signed in to change notification settings - Fork 655
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
FEAT-#7178: Add type hints for DataFrame #7179
Conversation
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
@@ -2591,7 +2632,7 @@ | |||
) | |||
object.__setattr__(self, key, value) | |||
|
|||
def __setitem__(self, key, value): | |||
def __setitem__(self, key, value) -> None: |
Check notice
Code scanning / CodeQL
Explicit returns mixed with implicit (fall through) returns Note
def _create_or_update_from_compiler( | ||
self, new_query_compiler, inplace=False | ||
) -> Union[DataFrame, None]: |
Check notice
Code scanning / CodeQL
Explicit returns mixed with implicit (fall through) returns Note
@@ -3108,7 +3153,7 @@ | |||
""" | |||
return Series(query_compiler=query_compiler) | |||
|
|||
def _set_axis_name(self, name, axis=0, inplace=False): | |||
def _set_axis_name(self, name, axis=0, inplace=False) -> Union[DataFrame, None]: |
Check notice
Code scanning / CodeQL
Explicit returns mixed with implicit (fall through) returns Note
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
docs/development/architecture.rst
is up-to-date