Skip to content

Commit

Permalink
fix: Make mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Feb 13, 2024
1 parent ab6677e commit 9b2c973
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

class TestBasic(unittest.TestCase):

login = os.environ.get('LOGIN')
password = os.environ.get('PASSWORD')
login = os.environ.get('LOGIN', '')
password = os.environ.get('PASSWORD', '')

def test_not_auth(self) -> None:
x = PyPDNS(basic_auth=('username', 'yourpassword'))
Expand Down

0 comments on commit 9b2c973

Please sign in to comment.