Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit a023af2

Browse files
committed
Fixed type hint.
1 parent dc0ab5f commit a023af2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iota/bin/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from getpass import getpass as secure_input
99
from io import StringIO
1010
from sys import exit
11-
from typing import Optional, Text
11+
from typing import Any, Optional, Text
1212

1313
from six import text_type, with_metaclass
1414

@@ -39,7 +39,7 @@ def __init__(self, stdout=sys.stdout, stderr=sys.stderr, stdin=sys.stdin):
3939

4040
@abstract_method
4141
def execute(self, api, **arguments):
42-
# type: (Iota, ...) -> Optional[int]
42+
# type: (Iota, **Any) -> Optional[int]
4343
"""
4444
Executes the command and (optionally) returns an exit code (used by
4545
the shell to determine if the application exited cleanly).

0 commit comments

Comments
 (0)