-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
[CodeStyle][F403] expand star import #46946
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
很抱歉,经过我们的反复讨论,你的PR暂未达到合入标准,请阅读飞桨原生算子开发规范,你可以重新提交新的PR,我们先将此PR关闭,感谢你的贡献。 |
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.
LGTM
请解决下冲突 |
已解决~ |
…`(part3) (#57839) * enable isort in python/paddle/base/framework.py * try relative import * `fluid_version` -> `paddle_version` * correct noqa: F401 * try to fix import order deps * refine comments * `ir_change` -> `ir_guard` * fix some ugly import from #46946 * fix `paddle/base/__init__.py` * move all patch code into one place * move all patch code to base/__init__.py * remove monkey_patch_math_tensor, its part of monkey_patch_tensor * adjust patch order * Revert "adjust patch order" This reverts commit 11a4881. * Revert "remove monkey_patch_math_tensor, its part of monkey_patch_tensor" This reverts commit 9532b66. * Revert "move all patch code to base/__init__.py" This reverts commit 3b1894c. * Revert "move all patch code into one place" This reverts commit 574d9ca. --------- Co-authored-by: SigureMo <sigure.qaq@gmail.com>
…`(part3) (PaddlePaddle#57839) * enable isort in python/paddle/base/framework.py * try relative import * `fluid_version` -> `paddle_version` * correct noqa: F401 * try to fix import order deps * refine comments * `ir_change` -> `ir_guard` * fix some ugly import from PaddlePaddle#46946 * fix `paddle/base/__init__.py` * move all patch code into one place * move all patch code to base/__init__.py * remove monkey_patch_math_tensor, its part of monkey_patch_tensor * adjust patch order * Revert "adjust patch order" This reverts commit 11a4881. * Revert "remove monkey_patch_math_tensor, its part of monkey_patch_tensor" This reverts commit 9532b66. * Revert "move all patch code to base/__init__.py" This reverts commit 3b1894c. * Revert "move all patch code into one place" This reverts commit 574d9ca. --------- Co-authored-by: SigureMo <sigure.qaq@gmail.com>
…`(part3) (PaddlePaddle#57839) * enable isort in python/paddle/base/framework.py * try relative import * `fluid_version` -> `paddle_version` * correct noqa: F401 * try to fix import order deps * refine comments * `ir_change` -> `ir_guard` * fix some ugly import from PaddlePaddle#46946 * fix `paddle/base/__init__.py` * move all patch code into one place * move all patch code to base/__init__.py * remove monkey_patch_math_tensor, its part of monkey_patch_tensor * adjust patch order * Revert "adjust patch order" This reverts commit 11a4881. * Revert "remove monkey_patch_math_tensor, its part of monkey_patch_tensor" This reverts commit 9532b66. * Revert "move all patch code to base/__init__.py" This reverts commit 3b1894c. * Revert "move all patch code into one place" This reverts commit 574d9ca. --------- Co-authored-by: SigureMo <sigure.qaq@gmail.com>
…`(part3) (PaddlePaddle#57839) * enable isort in python/paddle/base/framework.py * try relative import * `fluid_version` -> `paddle_version` * correct noqa: F401 * try to fix import order deps * refine comments * `ir_change` -> `ir_guard` * fix some ugly import from PaddlePaddle#46946 * fix `paddle/base/__init__.py` * move all patch code into one place * move all patch code to base/__init__.py * remove monkey_patch_math_tensor, its part of monkey_patch_tensor * adjust patch order * Revert "adjust patch order" This reverts commit 11a4881. * Revert "remove monkey_patch_math_tensor, its part of monkey_patch_tensor" This reverts commit 9532b66. * Revert "move all patch code to base/__init__.py" This reverts commit 3b1894c. * Revert "move all patch code into one place" This reverts commit 574d9ca. --------- Co-authored-by: SigureMo <sigure.qaq@gmail.com>
PR types
Others
PR changes
Others
Describe
利用 autoflake 展开
from xxx import *
,部分无法展开的通过手动展开 / 直接加# noqa: F403
ignore 掉Related links