From da1b4608e564dcae656ae5c55be683a66166e494 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sun, 26 Jun 2022 15:48:15 +0000 Subject: [PATCH] tinytinypy/main: Fix indent of Content-Type header --- tinytinypy/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinytinypy/main.py b/tinytinypy/main.py index 05fafa6..d09f6f5 100644 --- a/tinytinypy/main.py +++ b/tinytinypy/main.py @@ -151,7 +151,7 @@ class Connection: def _get(self, op, sendSid=True, **parameters): headers = { - 'Content-Type': 'application/json', + 'Content-Type': 'application/json', } post_body = {k: v for k, v in parameters.items() if v is not None} post_body['op'] = op