Skip to content

Commit

Permalink
Fix PLW2901.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamghill committed Feb 25, 2024
1 parent e5f41a4 commit 2bbdffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_unicorn/management/commands/startunicorn.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ def handle(self, **options):

paths, is_first = self.check_initials_directories(app_directory)

for name in options["component_names"]:
nested_path, name = self.obtain_nested_path(name)
for component_name in options["component_names"]:
(nested_path, name) = self.obtain_nested_path(component_name)

self.create_nested_directories(paths, nested_path)

Expand Down

0 comments on commit 2bbdffd

Please sign in to comment.