aboutsummaryrefslogtreecommitdiff
path: root/mu4web/password.py
diff options
context:
space:
mode:
Diffstat (limited to 'mu4web/password.py')
-rwxr-xr-xmu4web/password.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mu4web/password.py b/mu4web/password.py
index d7ab5ce..ee7613e 100755
--- a/mu4web/password.py
+++ b/mu4web/password.py
@@ -41,10 +41,11 @@ class Passwords:
Simple password store.
:param fname:
- Path of json file to load and store from.
+ Path of json file to load and store from. It's recommended to
+ end this name with ``.json``.
"""
- def __init__(self, fname: os.PathLike[str]):
+ def __init__(self, fname: str):
self.fname = fname
self.db: dict[str, PasswordEntry]
try: