Skip to content

Commit b387e6a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 7058de9 commit b387e6a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

stubs/pyperclip/pyperclip/__init__.pyi

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
__all__ = ["copy", "paste", "set_clipboard", "determine_clipboard"]
22

33
from collections.abc import Callable
4-
from typing import Any, Literal, TypeAlias, Protocol
5-
4+
from typing import Any, Literal, Protocol, TypeAlias
65

76
class PyperclipException(RuntimeError): ...
87

@@ -11,11 +10,9 @@ class PyperclipWindowsException(PyperclipException):
1110

1211
class PyperclipTimeoutException(PyperclipException): ...
1312

14-
1513
class WinDLLUser32Function(Protocol):
1614
def __call__(self, *args: Any) -> Any: ...
1715

18-
1916
# Wrapper for ctypes calls, should not be exposed to the developer
2017
class CheckedCall:
2118
def __init__(self, f: WinDLLUser32Function) -> None: ...

0 commit comments

Comments
 (0)