underscore unused vars

This commit is contained in:
burnettk 2022-11-11 11:44:45 -05:00
parent b862d6b5ac
commit 93e5ba6f1b
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ class ProcessModelService(FileSystemService):
def __get_all_nested_models(self, group_path: str) -> list:
"""__get_all_nested_models."""
all_nested_models = []
for root, dirs, files in os.walk(group_path):
for _root, dirs, _files in os.walk(group_path):
for dir in dirs:
model_dir = os.path.join(group_path, dir)
if ProcessModelService().is_model(model_dir):