max_pain-script: bit of multi-line fmting
parent
bf33cb93b1
commit
df5e72f7ae
|
@ -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?
|
||||||
|
|
Loading…
Reference in New Issue