[lint] fix lint
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
SouthFox 2023-06-09 11:09:28 +08:00
parent 3f9e159eb1
commit 1e642fcf07

View file

@ -13,6 +13,9 @@ from httpx import Headers
@dataclass @dataclass
class SignedData: class SignedData:
"""
Signature data
"""
method: str method: str
path: str path: str
signed_list: list signed_list: list
@ -100,4 +103,3 @@ class HttpSignature:
+ signed_data.headers[signed_str]) + signed_data.headers[signed_str])
return "\n".join(signed_string) return "\n".join(signed_string)