Added config folder with TSV columns for each model

This commit is contained in:
DiG 2022-02-05 21:10:10 +01:00
parent 4fb8e43a35
commit 113c5bf2b0
1 changed files with 1 additions and 1 deletions

View File

@ -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() )