Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions class_generator/tests/manifests/APIServer/api_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
1 change: 1 addition & 0 deletions class_generator/tests/manifests/ConfigMap/config_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import NamespacedResource


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
3 changes: 2 additions & 1 deletion class_generator/tests/manifests/Deployment/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from __future__ import annotations

from typing import Any
from ocp_resources.resource import NamespacedResource, MissingRequiredArgumentError

from ocp_resources.resource import MissingRequiredArgumentError, NamespacedResource


class Deployment(NamespacedResource):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
1 change: 1 addition & 0 deletions class_generator/tests/manifests/Machine/machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import NamespacedResource


Expand Down
1 change: 1 addition & 0 deletions class_generator/tests/manifests/NMState/nm_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
1 change: 1 addition & 0 deletions class_generator/tests/manifests/OAuth/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import Resource


Expand Down
1 change: 1 addition & 0 deletions class_generator/tests/manifests/Pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import NamespacedResource


Expand Down
3 changes: 2 additions & 1 deletion class_generator/tests/manifests/Pod/pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from __future__ import annotations

from typing import Any
from ocp_resources.resource import NamespacedResource, MissingRequiredArgumentError

from ocp_resources.resource import MissingRequiredArgumentError, NamespacedResource


class Pod(NamespacedResource):
Expand Down
1 change: 1 addition & 0 deletions class_generator/tests/manifests/Secret/secret.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from __future__ import annotations

from typing import Any

from ocp_resources.resource import NamespacedResource


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from __future__ import annotations

from typing import Any
from ocp_resources.resource import NamespacedResource, MissingRequiredArgumentError

from ocp_resources.resource import MissingRequiredArgumentError, NamespacedResource


class ServiceMeshMember(NamespacedResource):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from __future__ import annotations

from typing import Any
from ocp_resources.resource import NamespacedResource, MissingRequiredArgumentError

from ocp_resources.resource import MissingRequiredArgumentError, NamespacedResource


class ServingRuntime(NamespacedResource):
Expand Down
Loading