10 lines
252 B
Python
10 lines
252 B
Python
from config_writer import ConfigWriter
|
|
|
|
cw = ConfigWriter()
|
|
|
|
lis = cw.inactive_headphones
|
|
if cw.active_headphone is not None:
|
|
lis.append(cw.active_headphone)
|
|
|
|
#cw.write_specs(lis, None)
|
|
cw.write_specs(cw.active_headphone, cw.inactive_headphones[0]) |