Skip to content

Commit 2bbdffd

Browse files
committed
Fix PLW2901.
1 parent e5f41a4 commit 2bbdffd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django_unicorn/management/commands/startunicorn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ def handle(self, **options):
215215

216216
paths, is_first = self.check_initials_directories(app_directory)
217217

218-
for name in options["component_names"]:
219-
nested_path, name = self.obtain_nested_path(name)
218+
for component_name in options["component_names"]:
219+
(nested_path, name) = self.obtain_nested_path(component_name)
220220

221221
self.create_nested_directories(paths, nested_path)
222222

0 commit comments

Comments
 (0)