Skip to content

Commit

Permalink
updated goe_filter so it doesn't use google trans
Browse files Browse the repository at this point in the history
  • Loading branch information
DE0CH committed Jun 21, 2020
1 parent f7ee985 commit 5f43f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geo_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def process_files(path, dirs, files, geo_filtered_dict):
for path, dirs, files in os.walk('untarred'):
q.put((path, dirs, files))
q.join()
except KeyboardInterrupt as e:
raise e
except KeyboardInterrupt:
pass
finally:
with open('geo_filtered.pkl', 'wb') as f:
pickle.dump(geo_filtered, f)
Expand Down

0 comments on commit 5f43f0a

Please sign in to comment.