mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 15:35:05 +02:00
Fix ruff errors
This commit is contained in:
parent
2cf0e060ed
commit
6e563134b2
26 changed files with 194 additions and 209 deletions
|
|
@ -1,5 +1,4 @@
|
|||
from abc import ABC, abstractmethod
|
||||
from typing import Tuple
|
||||
|
||||
from ..config import Section
|
||||
|
||||
|
|
@ -35,7 +34,7 @@ class Authenticator(ABC):
|
|||
self.name = name
|
||||
|
||||
@abstractmethod
|
||||
async def credentials(self) -> Tuple[str, str]:
|
||||
async def credentials(self) -> tuple[str, str]:
|
||||
pass
|
||||
|
||||
async def username(self) -> str:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue