We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d697e commit a50eddaCopy full SHA for a50edda
tokenomics_decentralization/helper.py
@@ -147,7 +147,10 @@ def get_output_directory():
147
:returns: a list of directories that might contain the db files
148
"""
149
config = get_config_data()
150
- return [pathlib.Path(db_dir).resolve() for db_dir in config['output_directories']][0]
+ sources = ' - '.join(get_active_source_keywords())
151
+ if not sources:
152
+ sources = 'No clustering'
153
+ return [pathlib.Path(db_dir).resolve() for db_dir in config['output_directories']][0] / sources
154
155
156
def get_input_directories():
0 commit comments