Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Jun 20, 2023
1 parent 973ca4d commit 5610663
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/data/Hunter2Keyring.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from typing import Optional
from jaraco.classes import properties
from keyring.backend import KeyringBackend


Expand All @@ -14,3 +15,7 @@ def set_password(self, service: str, username: str, password: str) -> None:

def delete_password(self, service: str, username: str) -> None:
pass

@properties.classproperty
def priority(self) -> int:
return 1

0 comments on commit 5610663

Please sign in to comment.