Skip to content

Commit

Permalink
Minor variable naming correction
Browse files Browse the repository at this point in the history
  • Loading branch information
MitjaNemec committed Feb 24, 2020
1 parent fb8a61d commit b9b306e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions replicate_layout/replicatelayout.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,8 @@ def replicate_modules(self):
# go through all modules
mod_sheet = self.get_modules_on_sheet(sheet)
nr_mods = len(mod_sheet)
for track_index in range(nr_mods):
mod = mod_sheet[track_index]
for mod_index in range(nr_mods):
mod = mod_sheet[mod_index]
progress = progress + (1/nr_sheets)*(1/nr_mods)
self.update_progress(self.stage, progress, None)

Expand Down
2 changes: 1 addition & 1 deletion replicate_layout/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
52
53

0 comments on commit b9b306e

Please sign in to comment.