mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-23 03:38:08 -06:00
5 lines
167 B
Python
5 lines
167 B
Python
|
import win32com.client
|
||
|
def fix():
|
||
|
if win32com.client.gencache.is_readonly == True:
|
||
|
win32com.client.gencache.is_readonly = False
|
||
|
win32com.client.gencache.Rebuild()
|