Skip to content

Commit b7f27f4

Browse files
committed
Docs tweak
1 parent df4e9e2 commit b7f27f4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

gogs_client/interface.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ def delete(self, path, auth=None, **kwargs):
645645
646646
:param str path: relative url of the request (e.g. `/users/username`)
647647
:param auth.Authentication auth: authentication object
648-
:param kwargs dict: Extra arguments for the request, as supported by
648+
:param kwargs dict: Extra arguments for the request, as supported by the
649649
`requests <http://docs.python-requests.org/>`_ library.
650650
:raises NetworkFailure: if there is an error communicating with the server
651651
:raises ApiFailure: if the request cannot be serviced
@@ -666,7 +666,7 @@ def get(self, path, auth=None, **kwargs):
666666
667667
:param str path: relative url of the request (e.g. `/users/username`)
668668
:param auth.Authentication auth: authentication object
669-
:param kwargs dict: Extra arguments for the request, as supported by
669+
:param kwargs dict: Extra arguments for the request, as supported by the
670670
`requests <http://docs.python-requests.org/>`_ library.
671671
:raises NetworkFailure: if there is an error communicating with the server
672672
:raises ApiFailure: if the request cannot be serviced
@@ -687,7 +687,7 @@ def patch(self, path, auth=None, **kwargs):
687687
688688
:param str path: relative url of the request (e.g. `/users/username`)
689689
:param auth.Authentication auth: authentication object
690-
:param kwargs dict: Extra arguments for the request, as supported by
690+
:param kwargs dict: Extra arguments for the request, as supported by the
691691
`requests <http://docs.python-requests.org/>`_ library.
692692
:raises NetworkFailure: if there is an error communicating with the server
693693
:raises ApiFailure: if the request cannot be serviced
@@ -708,7 +708,7 @@ def post(self, path, auth=None, **kwargs):
708708
709709
:param str path: relative url of the request (e.g. `/users/username`)
710710
:param auth.Authentication auth: authentication object
711-
:param kwargs dict: Extra arguments for the request, as supported by
711+
:param kwargs dict: Extra arguments for the request, as supported by the
712712
`requests <http://docs.python-requests.org/>`_ library.
713713
:raises NetworkFailure: if there is an error communicating with the server
714714
:raises ApiFailure: if the request cannot be serviced
@@ -729,7 +729,7 @@ def put(self, path, auth=None, **kwargs):
729729
730730
:param str path: relative url of the request (e.g. `/users/username`)
731731
:param auth.Authentication auth: authentication object
732-
:param kwargs dict: Extra arguments for the request, as supported by
732+
:param kwargs dict: Extra arguments for the request, as supported by the
733733
`requests <http://docs.python-requests.org/>`_ library.
734734
:raises NetworkFailure: if there is an error communicating with the server
735735
:raises ApiFailure: if the request cannot be serviced

0 commit comments

Comments
 (0)