Skip to content

Commit

Permalink
Delint'd.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkw31 committed Sep 10, 2024
1 parent 15e370e commit ae7fb75
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions softpack_core/schemas/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import io
import re
import statistics
from dataclasses import dataclass
from dataclasses import dataclass, field
from pathlib import Path
from traceback import format_exception_only
from typing import List, Optional, Tuple, Union, cast
Expand Down Expand Up @@ -322,7 +322,7 @@ class Environment:
state: Optional[State]
tags: list[str]
hidden: bool
cachedEnvs: list["Environment"] = None
cachedEnvs: list["Environment"] = field(default_factory=list)
envsUpdates: bool = True

requested: Optional[datetime.datetime] = None
Expand Down
1 change: 0 additions & 1 deletion softpack_core/schemas/package_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"""

from dataclasses import dataclass
from typing import Iterable

import strawberry

Expand Down
1 change: 0 additions & 1 deletion softpack_core/spack.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class Package(PackageBase):
class Spack:
"""Spack interface class."""

packages: list[Package]
packagesUpdated: bool = True

def __init__(
Expand Down

0 comments on commit ae7fb75

Please sign in to comment.