nickneos / Broadlink-Toolkit

Tools to speed up learning and sending IR commands on a Broadlink device
15 stars 3 forks source link

print format issue #3

Open clyra opened 5 years ago

clyra commented 5 years ago

Hi,

Thanks for you script. Very useful. But be aware that the using print(f'{variable}') only works for python versions >= 3.6. To be compatible with previous python3 versions you should use print('{} {}'.format(variable1, variable2))