Skip to content

Commit de1ed9c

Browse files
authored
Merge pull request #948 from PrefectHQ/datetime
fix datetime method call
2 parents 0d13d38 + cbe60e4 commit de1ed9c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/marvin/beta/assistants/formatting.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ def download_temp_file(file_id: str):
5050
def format_timestamp(timestamp: int) -> str:
5151
"""Outputs timestamp as a string in 12 hour format. Hours are left-padded with space instead of zero."""
5252
return (
53-
datetime.datetime.fromtimestamp(timestamp)
54-
.strftime("%I:%M:%S %p")
55-
.lstrip("0")
56-
.rjust(11)
53+
datetime.fromtimestamp(timestamp).strftime("%I:%M:%S %p").lstrip("0").rjust(11)
5754
)
5855

5956

0 commit comments

Comments
 (0)