Skip to content

Commit

Permalink
fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
linxOD committed Sep 27, 2022
1 parent 9cf5491 commit 9ccc07e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
merge_tei_fragments,
make_full_tei_doc,
define_readings,
make_positive_app,
merge_html_fragments
make_positive_app
)
from app.config import XPATH, CHUNK_SIZE

Expand All @@ -23,6 +22,7 @@
"make_tei.xslt"
)


def get_frd_data(url, save_path, path_dir, save):
frd_data = requests.get(
url,
Expand Down Expand Up @@ -119,7 +119,7 @@ def collate_tei(save_path, path_dir, select):
os.makedirs('collate-out/collated', exist_ok=True)
output_dir = "./collate-out/collated"
result_file = f'{output_dir}/collated.xml'
result_html = './index.html'
# result_html = './index.html'

print("starting...")
CxCollate(
Expand Down Expand Up @@ -166,4 +166,3 @@ def collate_tei(save_path, path_dir, select):

def remove_dir(save_path):
shutil.rmtree(save_path)

0 comments on commit 9ccc07e

Please sign in to comment.