Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 23, 2024
1 parent 02f7dd7 commit 978b128
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/filelock/read_write/_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from abc import ABC
from typing import TYPE_CHECKING

from ._api import ReadWriteMode, BaseReadWriteFileLock
from ._api import BaseReadWriteFileLock, ReadWriteMode

if TYPE_CHECKING:
import os
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from __future__ import annotations

import sys
import threading
from types import TracebackType
from typing import Tuple, Type, Union
import threading

import pytest

_ExcInfoType = Union[Tuple[Type[BaseException], BaseException, TracebackType], Tuple[None, None, None]]
Expand Down

0 comments on commit 978b128

Please sign in to comment.