ruff autofixes (mostly typing.* -> collections.abc.*)

This commit is contained in:
James R. Barlow
2023-10-01 00:02:53 -07:00
parent e9419d2c40
commit 113a6b45bd
21 changed files with 35 additions and 26 deletions
+2 -1
View File
@@ -7,9 +7,10 @@ from __future__ import annotations
from abc import ABC, abstractmethod
from argparse import ArgumentParser, Namespace
from collections.abc import Sequence
from logging import Handler
from pathlib import Path
from typing import TYPE_CHECKING, AbstractSet, NamedTuple, Sequence
from typing import TYPE_CHECKING, AbstractSet, NamedTuple
import pluggy