🎨 Python ; cleanup (#26426)

This commit is contained in:
Andrew 2023-11-14 00:48:01 -05:00 committed by GitHub
parent 178938d957
commit c751dcfcf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 27 additions and 27 deletions

View file

@ -23,7 +23,7 @@ if pioutil.is_pio_build():
assert isfile(original_file) and isfile(src_file)
shutil.copyfile(original_file, backup_file)
shutil.copyfile(src_file, original_file);
shutil.copyfile(src_file, original_file)
def _touch(path):
with open(path, "w") as fp: