Skip to content

Commit e1e716a

Browse files
committed
Add missing debug option to ABC
Signed-off-by: Stephen Finucane <[email protected]>
1 parent a79dbb8 commit e1e716a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pwclient/api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222

2323
class API(metaclass=abc.ABCMeta):
2424
@abc.abstractmethod
25-
def __init__(self, server, *, username=None, password=None, token=None):
25+
def __init__(
26+
self, server, *, username=None, password=None, token=None, debug=False
27+
):
2628
if (username and not password) or (password and not username):
2729
raise exceptions.ConfigError(
2830
'You must provide both a username and a password or a token'

0 commit comments

Comments
 (0)