From 113c5bf2b02406bb24186e624187db45ac9dc222 Mon Sep 17 00:00:00 2001 From: DiG Date: Sat, 5 Feb 2022 21:10:10 +0100 Subject: [PATCH] Added config folder with TSV columns for each model --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 8fa2692..2cbe003 100644 --- a/config.py +++ b/config.py @@ -17,7 +17,7 @@ conf_files = os.listdir( CONFDIR ) keyword = 'your_keyword' for file in conf_files: if os.path.isfile( os.path.join(CONFDIR,file) ): - if file.endwith('.tsv'): + if file.endswith('.tsv'): eprint( 'Conf file: ', file ) f = open( os.path.join(CONFDIR,file), 'r' ) eprint( file[:-4], f.split() )