Browse Source

fix pylint

tags/v0.5.0-beta
unknown zhouyaqiang 5 years ago
parent
commit
f39a934a77
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/st/networks/models/deeplabv3/src/__init__.py

+ 2
- 2
tests/st/networks/models/deeplabv3/src/__init__.py View File

@@ -13,11 +13,11 @@
# limitations under the License.
# ============================================================================
"""Init DeepLabv3."""
from .deeplabv3 import ASPP, DeepLabV3, deeplabv3_resnet50
from .deeplabv3 import ASPP, deeplabv3_resnet50
from .backbone import *

__all__ = [
"ASPP", "DeepLabV3", "deeplabv3_resnet50"
"ASPP", "deeplabv3_resnet50"
]

__all__.extend(backbone.__all__)

Loading…
Cancel
Save