Skip to content

Commit

Permalink
Lowercase key names in system-info (#70)
Browse files Browse the repository at this point in the history
Fixes: #67
  • Loading branch information
asmacdo committed Jun 10, 2024
1 parent 0171257 commit 0d0a6ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/duct.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ def finalize(self):
def __repr__(self):
return json.dumps(
{
"Command": self.command,
"System": self.system_info,
"ENV": self.env,
"GPU": self.gpus,
"command": self.command,
"system": self.system_info,
"env": self.env,
"gpu": self.gpus,
}
)

Expand Down

0 comments on commit 0d0a6ee

Please sign in to comment.