From 1e642fcf079b1b19646f4f409a7154777517351f Mon Sep 17 00:00:00 2001 From: SouthFox Date: Fri, 9 Jun 2023 11:09:28 +0800 Subject: [PATCH] [lint] fix lint --- demo/httpsig.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demo/httpsig.py b/demo/httpsig.py index 3d47a8a..679ba12 100644 --- a/demo/httpsig.py +++ b/demo/httpsig.py @@ -13,6 +13,9 @@ from httpx import Headers @dataclass class SignedData: + """ + Signature data + """ method: str path: str signed_list: list @@ -100,4 +103,3 @@ class HttpSignature: + signed_data.headers[signed_str]) return "\n".join(signed_string) -