Skip to content

Commit 5d6bb98

Browse files
committed
fix formatting
1 parent 1985e0c commit 5d6bb98

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

machineid/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ def id(winregistry: bool = True) -> str:
9191
if not id:
9292
out = __exec__('wmic csproduct get uuid')
9393
if out is not None and out.count('\n')>1:
94-
id = out.split('\n')[2].strip()
95-
94+
id = out.split('\n')[2].strip()
9695
elif platform.startswith('linux'):
9796
id = __read__('/var/lib/dbus/machine-id')
9897
if not id:

0 commit comments

Comments
 (0)