Skip to content

Commit

Permalink
Declare print_availab_parcels as an internal method
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasser Alemán Gómez committed Nov 12, 2024
1 parent e62c984 commit e03d653
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chimera/chimera.py
Original file line number Diff line number Diff line change
Expand Up @@ -2144,7 +2144,7 @@ def _build_args_parser():
print(' ')
mess = "Available parcellations for each supra-region"
print('{}{}{}{}{}: '.format(bcolors.BOLD, bcolors.PURPLE, mess, bcolors.ENDC, bcolors.ENDC))
_print_availab_parcels()
print_availab_parcels()
sys.exit()

elif args.bidsdir is None or args.parcodes is None:
Expand Down Expand Up @@ -2325,7 +2325,7 @@ def launch_fsl_first(t1:str,
cmd_cont = cltmisc.generate_container_command(cmd_bashargs, cont_tech, cont_image) # Generating container command
subprocess.run(cmd_cont, stdout=subprocess.PIPE, universal_newlines=True) # Running container command

def print_availab_parcels(reg_name=None):
def _print_availab_parcels(reg_name=None):
"""
Print the available parcellations for each supra-region.
Expand Down

0 comments on commit e03d653

Please sign in to comment.