Skip to content

Commit

Permalink
remove unneeded list cast
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Oct 17, 2018
1 parent 6111eef commit 723f085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/z3c/jbot/manager.py
Expand Up @@ -92,7 +92,7 @@ def unregisterDirectory(self, directory):

templates = []

for template, filename in list(self.templates.items()):
for template, filename in self.templates.items():
if filename in self.paths:
templates.append(template)

Expand Down

0 comments on commit 723f085

Please sign in to comment.