From df15f4d394c550dbf70ba163affcc91414ecea51 Mon Sep 17 00:00:00 2001 From: Patrick Ritter <7950125+patrit@users.noreply.github.com> Date: Sun, 5 Nov 2023 20:25:48 +0100 Subject: [PATCH] ruff: fix PYI016 --- gitopscli/commands/command_factory.py | 1 - pyproject.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/gitopscli/commands/command_factory.py b/gitopscli/commands/command_factory.py index ee67739f..0d18a944 100644 --- a/gitopscli/commands/command_factory.py +++ b/gitopscli/commands/command_factory.py @@ -11,7 +11,6 @@ from .version import VersionCommand CommandArgs = Union[ - DeployCommand.Args, DeployCommand.Args, AddPrCommentCommand.Args, CreatePreviewCommand.Args, diff --git a/pyproject.toml b/pyproject.toml index a78f2538..ca0759b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,6 @@ ignore = ["ANN101", "ANN401", # the following exclusions have been introduced to prevent huge changes # feel free to remove them and fix the code "gitopscli/appconfig_api/app_tenant_config.py" = ["PTH110", "PTH112", "PTH118"] -"gitopscli/commands/command_factory.py" = ["PYI016"] "gitopscli/commands/create_preview.py" = ["PTH112"] "gitopscli/commands/delete_preview.py" = ["PTH110"] "gitopscli/git_api/git_repo.py" = ["PTH101", "PTH118", "PTH123"]