Wed, 21 Sep 2022 16:47:33 +0200
Reformatted source code with 'Black'.
# -*- coding: utf-8 -*- # Copyright (c) 2013 - 2022 Detlev Offenbach <detlev@die-offenbachs.de> # """ Script to find the cxfreeze directory from running Python interpreter. """ import os import sys for sysPath in sys.path: modpath = os.path.join(sysPath, "cx_Freeze") if os.path.exists(modpath): print(modpath) # __IGNORE_WARNING_M801__ break