We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d13d38 + cbe60e4 commit de1ed9cCopy full SHA for de1ed9c
src/marvin/beta/assistants/formatting.py
@@ -50,10 +50,7 @@ def download_temp_file(file_id: str):
50
def format_timestamp(timestamp: int) -> str:
51
"""Outputs timestamp as a string in 12 hour format. Hours are left-padded with space instead of zero."""
52
return (
53
- datetime.datetime.fromtimestamp(timestamp)
54
- .strftime("%I:%M:%S %p")
55
- .lstrip("0")
56
- .rjust(11)
+ datetime.fromtimestamp(timestamp).strftime("%I:%M:%S %p").lstrip("0").rjust(11)
57
)
58
59
0 commit comments