Skip to content

Commit

Permalink
Fix np.print bug
Browse files Browse the repository at this point in the history
  • Loading branch information
eurunuela authored Jul 22, 2022
1 parent 9962a39 commit 7a2bbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tedana_regressors/tedana_regressors.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _get_parser():
def tedana_regressors(ctab, mix, prefix):

# Load component table and mixing matrix into pandas dataframes
np.print("Loading component table and mixing matrix...")
print("Loading component table and mixing matrix...")
ctab_df = pd.read_csv(ctab, sep="\t", index_col=0)
mix_df = pd.read_csv(mix, sep="\t", index_col=None)

Expand Down

0 comments on commit 7a2bbd5

Please sign in to comment.