Cleanup: single/double quote use in scripts

This commit is contained in:
Campbell Barton
2024-10-16 14:45:08 +11:00
parent 7ae7592899
commit c3b067dc80
11 changed files with 26 additions and 24 deletions

View File

@@ -34,13 +34,13 @@ def update(filepath):
def update_default(filepath):
with open(filepath, 'w', encoding='utf-8') as fh:
fh.write('''<bpy>
fh.write("""<bpy>
<Theme>
</Theme>
<ThemeStyle>
</ThemeStyle>
</bpy>
''')
""")
def main():