mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 23:45:05 +02:00
Add 'skip' option to crawlers
This commit is contained in:
parent
fc31100a0f
commit
df3ad3d890
6 changed files with 48 additions and 14 deletions
|
|
@ -13,7 +13,11 @@ class AuthError(Exception):
|
|||
|
||||
|
||||
class AuthSection(Section):
|
||||
pass
|
||||
def type(self) -> str:
|
||||
value = self.s.get("type")
|
||||
if value is None:
|
||||
self.missing_value("type")
|
||||
return value
|
||||
|
||||
|
||||
class Authenticator(ABC):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue