Commit 4fd9f50abe382729cda7f9e1c922842139c8604d
1 parent
bd996012
Exists in
master
and in
1 other branch
Implementa função skip no Iterator
Showing
2 changed files
with
4 additions
and
1 deletions
Show diff stats
src/new/Iterator.py
src/new/LerDicionarios.py
... | ... | @@ -123,7 +123,7 @@ class LerDicionarios(object): |
123 | 123 | |
124 | 124 | def carregar_verbos_ligacao(self): |
125 | 125 | try: |
126 | - self.file = csv.reader(open(self.path+" verbosLigacao.csv")) | |
126 | + self.file = csv.reader(open(self.path+"verbosLigacao.csv")) | |
127 | 127 | except IOError, (errno, strerror): |
128 | 128 | print "I/O error(%s): %s" % (errno, strerror) |
129 | 129 | print "carregar_verbos_ligacao" | ... | ... |