Skip to content

Commit 4cb7f15

Browse files
committed
Remove errant trailing commas
These don't do anything but they are confusing. Signed-off-by: Stephen Finucane <[email protected]>
1 parent 7d28825 commit 4cb7f15

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pwclient/api.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -671,12 +671,12 @@ def project_list(self, search_str=None, max_count=0):
671671
# we could implement these but we don't need them
672672
if search_str:
673673
raise NotImplementedError(
674-
'The search_str parameter is not supported',
674+
'The search_str parameter is not supported'
675675
)
676676

677677
if max_count:
678678
raise NotImplementedError(
679-
'The max_count parameter is not supported',
679+
'The max_count parameter is not supported'
680680
)
681681

682682
projects = self._list('projects')
@@ -706,12 +706,12 @@ def person_list(self, search_str=None, max_count=0):
706706
# we could implement these but we don't need them
707707
if search_str:
708708
raise NotImplementedError(
709-
'The search_str parameter is not supported',
709+
'The search_str parameter is not supported'
710710
)
711711

712712
if max_count:
713713
raise NotImplementedError(
714-
'The max_count parameter is not supported',
714+
'The max_count parameter is not supported'
715715
)
716716

717717
people = self._list('people')
@@ -779,7 +779,7 @@ def patch_list(
779779
# we could implement these but we don't need them
780780
if max_count:
781781
raise NotImplementedError(
782-
'The max_count parameter is not supported',
782+
'The max_count parameter is not supported'
783783
)
784784

785785
filters = {}

0 commit comments

Comments
 (0)