diff --git a/platformio/app.py b/platformio/app.py index c7dfdc43..a83d0eec 100644 --- a/platformio/app.py +++ b/platformio/app.py @@ -358,6 +358,7 @@ def get_cid(): uid = uuid.getnode() cid = uuid.UUID(bytes=hashlib.md5(str(uid).encode()).digest()) cid = str(cid) - if "windows" in util.get_systype() or os.getuid() > 0: + if ("windows" in util.get_systype() + or os.getuid() > 0): # yapf: disable pylint: disable=no-member set_state_item("cid", cid) return cid