Browse Source

!2088 fix pylint

Merge pull request !2088 from z00378171/master
tags/v0.5.0-beta
mindspore-ci-bot Gitee 5 years ago
parent
commit
34790387e3
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