Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
ltdrdata committed May 6, 2024
1 parent fedae06 commit 8cfbfeb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions comfy_cli/workspace_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,11 @@ def load_yaml(file_path: str) -> ComfyLockYAMLStruct:
basics = Basics(
remote=data.get("basics", {}).get("remote", ""),
name=data.get("basics", {}).get("name"),
updated_at=datetime.fromisoformat(data.get("basics", {}).get("updated_at"))
if data.get("basics", {}).get("updated_at")
else None,
updated_at=(
datetime.fromisoformat(data.get("basics", {}).get("updated_at"))
if data.get("basics", {}).get("updated_at")
else None
),
)

models = [
Expand Down

0 comments on commit 8cfbfeb

Please sign in to comment.