From 57afc20b79cc4ec78ecaa35301f4ba32e96ecfe7 Mon Sep 17 00:00:00 2001 From: odrling Date: Fri, 22 Mar 2024 01:33:21 +0100 Subject: [PATCH] fix type stubs with pyright --- pyproject.toml | 2 +- {stubs => typings}/pyperclip/__init__.pyi | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {stubs => typings}/pyperclip/__init__.pyi (100%) diff --git a/pyproject.toml b/pyproject.toml index eeea11c..22398fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ include = [ ] [tool.mypy] -mypy_path = "stubs" +mypy_path = "typings" [tool.ruff.lint] select = ["E", "F", "W", "B", "SIM", "I"] diff --git a/stubs/pyperclip/__init__.pyi b/typings/pyperclip/__init__.pyi similarity index 100% rename from stubs/pyperclip/__init__.pyi rename to typings/pyperclip/__init__.pyi