disable flake warnings for unused imports of types
This commit is contained in:
parent
fffca98a02
commit
f83972ddc4
@ -6,7 +6,7 @@
|
|||||||
import copy
|
import copy
|
||||||
import functools
|
import functools
|
||||||
import inspect
|
import inspect
|
||||||
from typing import List, Optional, Tuple
|
from typing import List, Optional, Tuple # noqa: F401
|
||||||
|
|
||||||
import six
|
import six
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
import socket
|
import socket
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
from typing import Dict # novm
|
from typing import Dict # novm # noqa: F401
|
||||||
|
|
||||||
import six
|
import six
|
||||||
|
|
||||||
|
@ -27,7 +27,16 @@
|
|||||||
import traceback
|
import traceback
|
||||||
import types
|
import types
|
||||||
import warnings
|
import warnings
|
||||||
from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple, Type # novm
|
from typing import ( # novm # noqa: F401
|
||||||
|
Any,
|
||||||
|
Callable,
|
||||||
|
Dict,
|
||||||
|
Iterable,
|
||||||
|
List,
|
||||||
|
Optional,
|
||||||
|
Tuple,
|
||||||
|
Type,
|
||||||
|
)
|
||||||
|
|
||||||
import six
|
import six
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user