From c15a1aecdfd6a12c80e243c5c12588845de3dea0 Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 25 May 2021 13:32:00 +0200 Subject: [PATCH] Rename keyring authenticator file for consistency --- PFERD/auth/__init__.py | 2 +- PFERD/auth/{keyring_authenticator.py => keyring.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename PFERD/auth/{keyring_authenticator.py => keyring.py} (100%) diff --git a/PFERD/auth/__init__.py b/PFERD/auth/__init__.py index 81ec31d..04ad587 100644 --- a/PFERD/auth/__init__.py +++ b/PFERD/auth/__init__.py @@ -3,7 +3,7 @@ from typing import Callable, Dict from ..config import Config from .authenticator import Authenticator, AuthSection -from .keyring_authenticator import KeyringAuthenticator, KeyringAuthSection +from .keyring import KeyringAuthenticator, KeyringAuthSection from .simple import SimpleAuthenticator, SimpleAuthSection from .tfa import TfaAuthenticator diff --git a/PFERD/auth/keyring_authenticator.py b/PFERD/auth/keyring.py similarity index 100% rename from PFERD/auth/keyring_authenticator.py rename to PFERD/auth/keyring.py