Skip to content

Commit 90ff178

Browse files
committed
Reverted the changes
1 parent 92e4933 commit 90ff178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def is_initialized(device_name) -> bool:
5656
if os.path.exists(config_path):
5757
logger.info('Found existing config file at {}.'.format(config_path))
5858
with open(config_path, 'r') as f:
59-
if any('hw.device.name = {}'.format(device_name) in line for line in f):
59+
if any('hw.device.name={}'.format(device_name) in line for line in f):
6060
logger.info('Existing config file references {}. Assuming device was previously initialized.'.format(device_name))
6161
return True
6262
else:

0 commit comments

Comments
 (0)