Skip to content

Commit

Permalink
Fix flake8 violation (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas authored Jan 24, 2024
1 parent 3ce5a06 commit f3b3ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiidalab_launch/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __post_init__(self):

# Normalize extra mount mode to be "rw" by default
# so that we match Docker default but are explicit.
for extra_mount in self.extra_mounts:
for extra_mount in self.extra_mounts.copy():
self.parse_extra_mount(extra_mount)
if len(extra_mount.split(":")) == 2:
self.extra_mounts.remove(extra_mount)
Expand Down

0 comments on commit f3b3ea5

Please sign in to comment.