Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdHeat committed Aug 23, 2024
1 parent 0d5550b commit 22b3dc9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ctfcli/core/instance/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import List

from ctfcli.core.api import API
from ctfcli.core.exceptions import InstanceConfigException

Expand Down Expand Up @@ -53,7 +55,7 @@ def getall():
return config

@staticmethod
def setall(configs) -> list[str]:
def setall(configs) -> List[str]:
failed = []
for k, v in configs.items():
try:
Expand Down

0 comments on commit 22b3dc9

Please sign in to comment.