Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
pec0ra committed Feb 5, 2020
1 parent 9792920 commit bf87b21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buvic/logic/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ def refresh(self, settings: Settings, remove_empty=True) -> None:
if not exists(self._uvdata_dir):
makedirs(self._uvdata_dir)

for root, dirs, files in os.walk(self._instr_dir, followlinks=True):
for root, _, files in os.walk(self._instr_dir, followlinks=True):
for name in files:
self._handle_instr_file(path.join(root, name))

for root, dirs, files in os.walk(self._uvdata_dir, followlinks=True):
for root, _, files in os.walk(self._uvdata_dir, followlinks=True):
for name in files:
self._handle_uvdata_file(path.join(root, name))

Expand Down

0 comments on commit bf87b21

Please sign in to comment.