mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2025-12-29 03:14:21 +01:00
⛅ fix: encoding
This commit is contained in:
@@ -14,7 +14,7 @@ def get_microservice_path(path, microservice_name, packages, num_approach, versi
|
||||
return os.path.join(path, microservice_name, f'{num_approach}_{package_path}', f'v{version}')
|
||||
|
||||
def persist_file(file_content, file_path):
|
||||
with open(file_path, 'w') as f:
|
||||
with open(file_path, 'w', encoding='utf-8') as f:
|
||||
f.write(file_content)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user