Skip to content

Commit 9bd9011

Browse files
authoredFeb 25, 2024
use pyupgrade to update to new typing syntax (#31580)
* add pyupgrade hook * run pyupgrade (pre-commit run -a) * ruff --fix * Revert "add pyupgrade hook" This reverts commit 56ec18b. * revert changes to third_party/ * manual type fixes * explicit Optional wrapping capnp objects old-commit-hash: 995250a
1 parent 8af72c9 commit 9bd9011

File tree

125 files changed

+464
-525
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+464
-525
lines changed
 

‎common/file_helpers.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import os
22
import tempfile
33
import contextlib
4-
from typing import Optional
54

65

76
class CallbackReader:
@@ -24,7 +23,7 @@ def read(self, *args, **kwargs):
2423

2524

2625
@contextlib.contextmanager
27-
def atomic_write_in_dir(path: str, mode: str = 'w', buffering: int = -1, encoding: Optional[str] = None, newline: Optional[str] = None,
26+
def atomic_write_in_dir(path: str, mode: str = 'w', buffering: int = -1, encoding: str | None = None, newline: str | None = None,
2827
overwrite: bool = False):
2928
"""Write to a file atomically using a temporary file in the same directory as the destination file."""
3029
dir_name = os.path.dirname(path)

‎common/gpio.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
from functools import lru_cache
3-
from typing import Optional, List
43

54
def gpio_init(pin: int, output: bool) -> None:
65
try:
@@ -16,7 +15,7 @@ def gpio_set(pin: int, high: bool) -> None:
1615
except Exception as e:
1716
print(f"Failed to set gpio {pin} value: {e}")
1817

19-
def gpio_read(pin: int) -> Optional[bool]:
18+
def gpio_read(pin: int) -> bool | None:
2019
val = None
2120
try:
2221
with open(f"/sys/class/gpio/gpio{pin}/value", 'rb') as f:
@@ -37,15 +36,15 @@ def gpio_export(pin: int) -> None:
3736
print(f"Failed to export gpio {pin}")
3837

3938
@lru_cache(maxsize=None)
40-
def get_irq_action(irq: int) -> List[str]:
39+
def get_irq_action(irq: int) -> list[str]:
4140
try:
4241
with open(f"/sys/kernel/irq/{irq}/actions") as f:
4342
actions = f.read().strip().split(',')
4443
return actions
4544
except FileNotFoundError:
4645
return []
4746

48-
def get_irqs_for_action(action: str) -> List[str]:
47+
def get_irqs_for_action(action: str) -> list[str]:
4948
ret = []
5049
with open("/proc/interrupts") as f:
5150
for l in f.readlines():

0 commit comments

Comments
 (0)
Please sign in to comment.