Skip to content

Commit be5b934

Browse files
Remove unneeded var
1 parent 2f74b0d commit be5b934

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gitopscli/commands/create_preview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def create_preview_command(
7272
logging.info("New folder for preview: %s", new_preview_folder_name)
7373
branch_preview_env_already_exist = os.path.exists(root_git.get_full_file_path(new_preview_folder_name))
7474
logging.info("Is preview env already existing for branch? %s", branch_preview_env_already_exist)
75-
for dirpath, dirnames, filenames in os.walk("."):
75+
for dirpath, filenames in os.walk("."):
7676
for f in filenames:
7777
logging.info(os.path.join(dirpath, f))
7878
if not branch_preview_env_already_exist:

0 commit comments

Comments
 (0)