File size: 512 Bytes
f5754e0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import os
import glob
for f in glob.glob(r'D:\Desktop_March_26\LYZR\graph-RAG\src\**\*.py', recursive=True):
with open(f, 'r', encoding='utf-8') as file:
content = file.read()
if 'default_factory=datetime.utcnow' in content:
new_content = content.replace('default_factory=datetime.utcnow', 'default_factory=lambda: datetime.now(timezone.utc).replace(tzinfo=None)')
with open(f, 'w', encoding='utf-8') as file:
file.write(new_content)
print(f"Fixed {f}")
|