Skip to content

Commit

Permalink
updated submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Jun 23, 2022
1 parent a8447d8 commit bd6012c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/web
2 changes: 1 addition & 1 deletion src/main/xproc
Submodule xproc updated 1 files
+1 −1 xslt/faust-metadata.xsl
4 changes: 2 additions & 2 deletions utils/verse_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from urllib.request import urlopen

from lxml import etree
from tqdm import tqdm
from rich.progress import track

_ns = {'tei': 'http://www.tei-c.org/ns/1.0',
'xh': 'http://www.w3.org/1999/xhtml'}
Expand Down Expand Up @@ -217,7 +217,7 @@ def main():
try:
writer = csv.DictWriter(output_file, list(field.name for field in fields(Verse)))
writer.writeheader()
for verse in tqdm(vs.lines(), total=15200, desc='Analyzing'):
for verse in track(vs.lines(), total=15200, description='Analyzing'):
writer.writerow(asdict(verse))
finally:
if output_file != sys.stdout:
Expand Down

0 comments on commit bd6012c

Please sign in to comment.