1
1
mirror of https://github.com/reikkaps/spaceapicli.git synced 2025-01-15 11:15:31 +01:00

Some beauty fixes

This commit is contained in:
Reik Kaps 2020-02-09 18:43:13 +01:00
parent 1e47040b75
commit 9215b20a13

View File

@ -49,10 +49,10 @@ def status(json, verbose):
pass
if json['state']['open'] is False:
print('🧘 closed'.format(str(json['space'])))
print('{} is closed'.format(str(json['space'])))
return False
print('🌞 open'.format(str(json['space'])))
print('{} is open'.format(str(json['space'])))
return True