This is an automated email from the ASF dual-hosted git repository.

ueshin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 2b2d722  [SPARK-37011][PYTHON] Remove unnecessary 'noqa: F401' comments
2b2d722 is described below

commit 2b2d7227878034331c38d6ca84ea8305b872533b
Author: Takuya UESHIN <ues...@databricks.com>
AuthorDate: Tue Dec 28 12:45:20 2021 -0800

    [SPARK-37011][PYTHON] Remove unnecessary 'noqa: F401' comments
    
    ### What changes were proposed in this pull request?
    
    Remove unnecessary 'noqa: F401' comments.
    
    ### Why are the changes needed?
    
    Now that `flake8` in Jenkins was upgraded (#34384), we can remove 
unnecessary 'noqa: F401' comments.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Existing tests.
    
    Closes #34385 from ueshin/issues/SPARK-37011/F401.
    
    Authored-by: Takuya UESHIN <ues...@databricks.com>
    Signed-off-by: Takuya UESHIN <ues...@databricks.com>
---
 python/pyspark/pandas/_typing.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/python/pyspark/pandas/_typing.py b/python/pyspark/pandas/_typing.py
index 3ab412f..51d1233 100644
--- a/python/pyspark/pandas/_typing.py
+++ b/python/pyspark/pandas/_typing.py
@@ -22,9 +22,9 @@ import numpy as np
 from pandas.api.extensions import ExtensionDtype
 
 if TYPE_CHECKING:
-    from pyspark.pandas.base import IndexOpsMixin  # noqa: F401 (SPARK-37011)
+    from pyspark.pandas.base import IndexOpsMixin
     from pyspark.pandas.frame import DataFrame
-    from pyspark.pandas.generic import Frame  # noqa: F401 (SPARK-37011)
+    from pyspark.pandas.generic import Frame
     from pyspark.pandas.indexes.base import Index
     from pyspark.pandas.series import Series
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to