Skip to content
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.

Fixed pep8 errors "F405" in converter #981

Merged
merged 1 commit into from Apr 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion blueoil/converter/__init__.py
Expand Up @@ -13,6 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# =============================================================================
from .env import *
from .env import MAX_CPU_COUNT

__all__ = ['MAX_CPU_COUNT']
6 changes: 4 additions & 2 deletions blueoil/converter/core/operators.py
Expand Up @@ -20,12 +20,14 @@
from termcolor import colored
from abc import abstractmethod
from itertools import dropwhile
from typing import TYPE_CHECKING, Any, Dict, Optional, cast
from typing import TYPE_CHECKING, Any, Dict, List, Optional, cast

import numpy as np

from blueoil.converter.core.view import View
from blueoil.converter.util import classproperty

from .data_types import *
from .data_types import DataType

if TYPE_CHECKING:
import blueoil.converter.core.operators as ops
Expand Down
2 changes: 1 addition & 1 deletion blueoil/converter/core/params.py
Expand Up @@ -17,7 +17,7 @@
from typing import List

from blueoil.converter.core.config import Config
from blueoil.converter.core.data_types import *
from blueoil.converter.core.data_types import Uint32
from blueoil.converter.core.operators import Conv


Expand Down
2 changes: 1 addition & 1 deletion blueoil/converter/core/view.py
Expand Up @@ -16,7 +16,7 @@
import copy
from textwrap import dedent, indent

from blueoil.converter.core.data_types import *
from blueoil.converter.core.data_types import QUANTIZED_PACKED


class View(object):
Expand Down