Skip to content

Commit

Permalink
remove parameter types
Browse files Browse the repository at this point in the history
  • Loading branch information
s-soroosh committed Feb 23, 2020
1 parent ccaeebb commit 863e7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fandogh_cli/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def zipdir(self, path, ziph):
ziph.write(os.path.join(self.context, file_path), arcname=file_path)

@staticmethod
def add_custom_ignore_folder_to_entries(entries: list, ignore_folders: list) -> list:
def add_custom_ignore_folder_to_entries(entries, ignore_folders):
for folder in ignore_folders:
if folder not in entries:
entries.append(folder)
Expand Down

0 comments on commit 863e7e0

Please sign in to comment.