Skip to content

Commit 22b3dc9

Browse files
committed
Fix typing
1 parent 0d5550b commit 22b3dc9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ctfcli/core/instance/config.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from typing import List
2+
13
from ctfcli.core.api import API
24
from ctfcli.core.exceptions import InstanceConfigException
35

@@ -53,7 +55,7 @@ def getall():
5355
return config
5456

5557
@staticmethod
56-
def setall(configs) -> list[str]:
58+
def setall(configs) -> List[str]:
5759
failed = []
5860
for k, v in configs.items():
5961
try:

0 commit comments

Comments
 (0)