Skip to content

Commit a9a0c3d

Browse files
cleanup
1 parent 60b2b02 commit a9a0c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/planet_auth_utils/commands/cli/jwt_cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __json_pretty_dumps__(self):
5353
def _human_readable_jwt_claim(d):
5454
for key, value in list(d.items()):
5555
if key in ["iat", "exp", "nbf"] and isinstance(value, int):
56-
# UNIX Time stamps in ISO format
56+
# UNIX Time stamps in ISO format, with annotations.
5757
fmt_time = time.strftime("%Y-%m-%dT%H:%M:%S%z", time.localtime(value))
5858
if (key == "exp") and (d[key] < time.time()):
5959
fmt_time += " (Expired)"

0 commit comments

Comments
 (0)