Skip to content

Commit

Permalink
Merge pull request #695 from TOMToolkit/feature/clarify-sidereal-vs-n…
Browse files Browse the repository at this point in the history
…onsidereal-setup

Clarify sidereal vs non-sidereal setup prompt
  • Loading branch information
jchate6 authored Oct 3, 2023
2 parents b3a7470 + 54596ff commit 24aab03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tom_setup/management/commands/tom_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def get_target_type(self):
'2': 'NON_SIDEREAL'
}
options_str = ['{}) {}'.format(key, target_type) for key, target_type in allowed_types.items()]
prompt = 'Which target type will your project use? {} '.format(self.style.WARNING(", ".join(options_str)))
prompt = 'Which target type should be used as default? {} '.format(self.style.WARNING(", ".join(options_str)))
target_type = input(prompt)
try:
self.context['TARGET_TYPE'] = allowed_types[target_type]
Expand Down

0 comments on commit 24aab03

Please sign in to comment.