Agent: fix ICredentialCollector return type-hint

This commit is contained in:
vakarisz 2022-02-15 12:41:19 +02:00
parent f5740b2a6e
commit 02cdebb88b
1 changed files with 2 additions and 1 deletions

View File

@ -1,9 +1,10 @@
from abc import ABC, abstractmethod
from typing import List
from .credentials import Credentials
class ICredentialCollector(ABC):
@abstractmethod
def collect_credentials(self) -> Credentials:
def collect_credentials(self) -> List[Credentials]:
pass