Run pyupgrade --py39-plus on all files

This commit is contained in:
Bruno Oliveira
2024-12-07 08:46:25 -03:00
parent 6dc8c2a66d
commit 475b346fd9
15 changed files with 21 additions and 22 deletions

View File

@@ -9,12 +9,12 @@ the controlling process which should best never happen.
from __future__ import annotations
from collections.abc import Sequence
import os
from pathlib import Path
import sys
import time
from typing import Any
from typing import Sequence
from _pytest._io import TerminalWriter
import execnet
@@ -158,9 +158,9 @@ def repr_pytest_looponfailinfo(
def init_worker_session(
channel: "execnet.Channel", # noqa: UP037
channel: execnet.Channel,
args: list[str],
option_dict: dict[str, "Any"], # noqa: UP037
option_dict: dict[str, Any],
) -> None:
import os
import sys