1
0
mirror of https://github.com/esphome/esphome.git synced 2025-07-18 13:03:10 +01:00

Replace references to Python 3.9 with Python 3.11

This commit is contained in:
Katherine Whitlock
2025-01-17 18:46:17 -05:00
parent 9e40d4cf45
commit 6b55b7e1b6
6 changed files with 15 additions and 15 deletions

@ -19,7 +19,7 @@ curfile = None
def print_error(file, lineno, msg):
global curfile
global curfile # noqa PLW0603
if curfile != file:
print_error_for_file(file, None)
@ -110,7 +110,7 @@ def main():
print_error(file_, linno, msg)
errors += 1
PYUPGRADE_TARGET = "--py39-plus"
PYUPGRADE_TARGET = "--py311-plus"
cmd = ["pyupgrade", PYUPGRADE_TARGET] + files
print()
print("Running pyupgrade...")