Skip to content

Commit c2ef879

Browse files
committed
fix
1 parent 7d98b6e commit c2ef879

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mindocr/data/transforms/transforms_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# flake8: noqa: F405
12
"""
23
Create and run transformations from a config or predefined transformation pipeline
34
"""
@@ -11,7 +12,6 @@
1112
from .svtr_transform import *
1213
from .table_transform import *
1314

14-
# noqa: F405
1515
SUPPORTED_TRANSFORMS = {
1616
"EASTProcessTrain": EASTProcessTrain,
1717
"DetLabelEncode": DetLabelEncode,

mindocr/postprocess/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# flake8: noqa: F405
12
from . import (
23
cls_postprocess,
34
det_db_postprocess,
@@ -21,7 +22,6 @@
2122

2223
__all__ = ["build_postprocess"]
2324

24-
# noqa: F405
2525
SUPPORTED_POSTPROCESS = {
2626
"DBPostprocess": DBPostprocess,
2727
"PSEPostprocess": PSEPostprocess,

0 commit comments

Comments
 (0)