Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnJyong committed Jun 14, 2024
1 parent 4f33ad2 commit 2915103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/services/auth/api_key_auth_base.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from abc import ABC
from abc import ABC, abstractmethod


class ApiKeyAuthBase(ABC):
def __init__(self, credentials: dict):
self.credentials = credentials

@staticmethod
@abstractmethod
def validate_credentials(self):
raise NotImplementedError

0 comments on commit 2915103

Please sign in to comment.