Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed Aug 4, 2024
1 parent 505378f commit 6645bce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildbot_netauth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from pathlib import Path

import netauth
from buildbot.www.auth import CustomAuth, UserInfoProviderBase
from buildbot.plugins import util
from twisted.internet import defer

__version__ = "0.0.1"


class NetAuthAuth(CustomAuth):
class NetAuthAuth(util.CustomAuth):
"""
NetAuth authentication provider
Expand Down Expand Up @@ -36,7 +36,7 @@ def check_credentials(self, username: str, password: str) -> bool:
return False


class NetAuthUserInfo(UserInfoProviderBase):
class NetAuthUserInfo(util.UserInfoProviderBase):
"""
NetAuth user info provider
Expand Down

0 comments on commit 6645bce

Please sign in to comment.