summaryrefslogtreecommitdiff
path: root/morphlib/app.py
diff options
context:
space:
mode:
authorJames Thomas <james.thomas@codethink.co.uk>2012-10-01 13:33:56 +0000
committerJames Thomas <james.thomas@codethink.co.uk>2012-10-01 13:33:56 +0000
commit4a86ee8b15fa567749a65b16309ae8d14bdf58a6 (patch)
tree38844a1879840fdc2afca528782b3c00bd8ca672 /morphlib/app.py
parent2723b41fdf6b5b611707bf7a001472adb8a01f93 (diff)
downloadmorph-4a86ee8b15fa567749a65b16309ae8d14bdf58a6.tar.gz
No need for iterable when initializing the set
Diffstat (limited to 'morphlib/app.py')
-rwxr-xr-xmorphlib/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/app.py b/morphlib/app.py
index 19f35ea0..7f2e01d5 100755
--- a/morphlib/app.py
+++ b/morphlib/app.py
@@ -291,7 +291,7 @@ class Morph(cliapp.Application):
morph_factory = morphlib.morphologyfactory.MorphologyFactory(lrc, rrc,
self)
queue = collections.deque(triplets)
- updated_repos = set([])
+ updated_repos = set()
while queue:
reponame, ref, filename = queue.popleft()