Skip to content

Commit a13350c

Browse files
committed
Add type annotations
1 parent e90d424 commit a13350c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reportportal_client/core/rp_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ def __init__(
4545
self.name = name if name and name.strip() else str(uuid.uuid4())
4646

4747
@property
48-
def payload(self) -> dict:
48+
def payload(self) -> dict[str, Any]:
4949
"""Get HTTP payload for the request."""
5050
return {"content": self.content, "contentType": self.content_type, "name": self.name}

0 commit comments

Comments
 (0)