Skip to content

Commit

Permalink
Drop colour support in bootstrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
ginolatorilla committed Aug 13, 2023
1 parent 93f417f commit d04dd6c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def main() -> int:
log.debug(' --project')
log.debug(' --directory')
log.debug(' --layout')
log.debug(' --colour')

log.debug('Generating pyproject.toml.')
with open(local_project_dir / 'pyproject.toml.template', 'r') as fp:
Expand Down Expand Up @@ -177,11 +176,6 @@ def make_cl_argument_parser() -> argparse.ArgumentParser:
'choices': {'module', 'package'},
'default': 'module'
},
('-c', '--color', '--colour'): {
'help': 'Enable rich text formatting support in the cli.'
'"package": The project will be a package (a directory with __init__.py)',
'action': 'store_true',
},
}

class CustomFormatter(argparse.RawDescriptionHelpFormatter, argparse.ArgumentDefaultsHelpFormatter):
Expand Down

0 comments on commit d04dd6c

Please sign in to comment.