Skip to content

Commit acf2f71

Browse files
committed
change order of typing
1 parent e707efb commit acf2f71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commons.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
with open('.key', 'r') as key_file:
2121
UNIQUE_KEY = key_file.read().strip()
2222
except FileNotFoundError:
23-
UNIQUE_KEY = uuid.uuid4()
23+
UNIQUE_KEY = str(uuid.uuid4())
2424
with open('.key', 'w') as key_file:
25-
key_file.write(str(UNIQUE_KEY))
25+
key_file.write(UNIQUE_KEY)
2626
key_file.close()

0 commit comments

Comments
 (0)