max_pain-script: bit of multi-line fmting

decimal_prices_thru_ems
Tyler Goodlet 2025-06-09 10:11:10 -04:00
parent bf33cb93b1
commit df5e72f7ae
1 changed files with 7 additions and 3 deletions

View File

@ -54,9 +54,13 @@ async def max_pain_daemon(
kind=kind kind=kind
) )
print(f'Available expiration dates for {currency}-{kind}:') log.info(
print(f'{expiry_dates}') f'Available expiries for {currency!r}-{kind}:\n'
expiry_date = input('Please enter a valid expiration date: ').upper() f'{expiry_dates}\n'
)
expiry_date: str = input(
'Please enter a valid expiration date: '
).upper()
print('Starting little daemon...') print('Starting little daemon...')
# maybe move this type annot down to the assignment line? # maybe move this type annot down to the assignment line?