-
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][ruff] clean some F401
step: 2
#57970
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
F401
step: 2F401
step: 2
F401
step: 2F401
step: 2
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.
这些 import 顶层/通用/库切没有标记 F401 的代码优先试试能不能删掉,否则会导致混乱的引用关系
本 PR 暂不修改,之后 PR 再说
LGTMeow 🐾
from .fs import HDFSClient # noqa: F401 | ||
from .ps_util import DistributedInfer # noqa: F401 | ||
from paddle.utils import deprecated | ||
import paddle # noqa: F401 |
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.
1
from paddle.distributed import fleet | ||
from paddle.utils import deprecated # noqa: F401 |
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.
2
@@ -12,8 +12,9 @@ | |||
# See the License for the specific language governing permissions and | |||
# limitations under the License. | |||
|
|||
import multiprocessing # noqa: F401 |
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.
3
* [codestyle] clean F401 * fix parallel_layers * try fix asp * fix fuse_resnet_unit_pass * fix dy2static * fix meta_parallel
* [codestyle] clean F401 * fix parallel_layers * try fix asp * fix fuse_resnet_unit_pass * fix dy2static * fix meta_parallel
* [codestyle] clean F401 * fix parallel_layers * try fix asp * fix fuse_resnet_unit_pass * fix dy2static * fix meta_parallel
PR types
Others
PR changes
Others
Description
相关链接:
#noqa: F401
step: 1 #57860PGH004
#57941python/paddle/__init__.py
#57682