Skip to content

Commit 23fa366

Browse files
committed
Black
1 parent 0e42435 commit 23fa366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mergin/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def post(self, path, data=None, headers={}):
236236
data = json.dumps(data, cls=DateTimeEncoder).encode("utf-8")
237237
request = urllib.request.Request(url, data, headers, method="POST")
238238
return self._do_request(request)
239-
239+
240240
def patch(self, path, data=None, headers={}):
241241
url = urllib.parse.urljoin(self.url, urllib.parse.quote(path))
242242
if headers.get("Content-Type", None) == "application/json":

0 commit comments

Comments
 (0)