mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-17 13:59:45 +08:00
Fixing flake8 E121, E122, E123, E124, E125, E126 errors
This commit is contained in:
+5
-2
@@ -10,7 +10,9 @@ _have_code = Union[types.MethodType, types.FunctionType, types.CodeType, type]
|
||||
_have_code_or_string = Union[_have_code, str, bytes]
|
||||
|
||||
|
||||
Instruction = NamedTuple("Instruction", [
|
||||
Instruction = NamedTuple(
|
||||
"Instruction",
|
||||
[
|
||||
('opname', str),
|
||||
('opcode', int),
|
||||
('arg', Optional[int]),
|
||||
@@ -19,7 +21,8 @@ Instruction = NamedTuple("Instruction", [
|
||||
('offset', int),
|
||||
('starts_line', Optional[int]),
|
||||
('is_jump_target', bool)
|
||||
])
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
# if sys.version_info >= (3, 4):
|
||||
|
||||
Reference in New Issue
Block a user