Skip to content

Commit

Permalink
Add proper spacing in config docstring config path (#1094)
Browse files Browse the repository at this point in the history
  • Loading branch information
eleftherioszisis authored Jan 26, 2024
1 parent 3347693 commit 2efd47f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neurom/apps/morph_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def extract_dataframe(morphs, config, n_workers=1):
return pd.DataFrame(columns=pd.MultiIndex.from_tuples(columns), data=rows)


extract_dataframe.__doc__ += str(EXAMPLE_STATS_CONFIG)
extract_dataframe.__doc__ = extract_dataframe.__doc__.strip() + "\n\t" + str(EXAMPLE_STATS_CONFIG)


def _get_feature_stats(feature_name, morphs, modes, kwargs):
Expand Down Expand Up @@ -232,7 +232,7 @@ def extract_stats(morphs, config):
return dict(stats)


extract_stats.__doc__ += str(EXAMPLE_STATS_CONFIG)
extract_stats.__doc__ = extract_stats.__doc__.strip() + "\n\t" + str(EXAMPLE_STATS_CONFIG)


def _get_header(results):
Expand Down

0 comments on commit 2efd47f

Please sign in to comment.