Skip to content

Commit

Permalink
appease flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
turtlebasket committed Feb 7, 2025
1 parent ace4c6b commit 730b6a7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
10 changes: 8 additions & 2 deletions transpire/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
from .pvc import PersistentVolumeClaim
from .secret import Secret
from .service import Service
from .statefulset import StatefulSet

__all__ = ["Deployment", "Ingress", "Service", "Secret", "ConfigMap", "PersistentVolumeClaim"]
__all__ = [
"Deployment",
"Ingress",
"Service",
"Secret",
"ConfigMap",
"PersistentVolumeClaim",
]
2 changes: 1 addition & 1 deletion transpire/resources/deployment.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, List, Union
from typing import List, Union

from kubernetes import client

Expand Down
2 changes: 0 additions & 2 deletions transpire/resources/pvc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from typing import Union

from kubernetes import client

from transpire.resources.base import Resource
Expand Down
5 changes: 3 additions & 2 deletions transpire/types.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from collections.abc import Iterable
from contextvars import Context
from enum import Enum
from functools import cached_property
from pathlib import Path
from types import ModuleType
from typing import Any, Callable, List, Literal, TypeVar
from enum import Enum
from typing import Any, Callable, List, TypeVar

from pydantic import BaseModel, Field

from transpire.internal import context
Expand Down

0 comments on commit 730b6a7

Please sign in to comment.