Commit bbe64038 authored by Kai Chen's avatar Kai Chen
Browse files

ignore flake8 warnings

parent f603f484
from .backbones import *
from .necks import *
from .roi_extractors import *
from .anchor_heads import *
from .bbox_heads import *
from .mask_heads import *
from .detectors import *
from .backbones import * # noqa: F401,F403
from .necks import * # noqa: F401,F403
from .roi_extractors import * # noqa: F401,F403
from .anchor_heads import * # noqa: F401,F403
from .bbox_heads import * # noqa: F401,F403
from .mask_heads import * # noqa: F401,F403
from .detectors import * # noqa: F401,F403
from .registry import BACKBONES, NECKS, ROI_EXTRACTORS, HEADS, DETECTORS
from .builder import (build_backbone, build_neck, build_roi_extractor,
build_head, build_detector)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment