1
0

bugfix in filling in missing

This commit is contained in:
Nathan TeBlunthuis 2025-01-12 14:27:58 -08:00
parent a7182ff3dc
commit 9590e18a07

View File

@ -122,8 +122,8 @@ def cosine_similarities_weekly(tfidf_path, outfile, term_colname, included_subre
conn.close()
def output_exists(week):
outfile = Path(outdir) / str(week) / str(week)
return outfile.exists()
output = Path(outfile) / str(week) / str(week)
return output.exists()
if not overwrite:
print("not overwriting")