From 3d94d213ea5f5f9cff1515867e5aabc48b0022bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Valur=20J=C3=B3nsson?= Date: Wed, 24 Jan 2024 15:51:40 +0000 Subject: [PATCH] add missing import for ctypes.wintypes --- userpath/interface.py | 1 + 1 file changed, 1 insertion(+) diff --git a/userpath/interface.py b/userpath/interface.py index c0e60e9..5ad9126 100644 --- a/userpath/interface.py +++ b/userpath/interface.py @@ -39,6 +39,7 @@ def location_in_new_path(self, location, check=False): def put(self, location, front=True, check=False, **kwargs): import ctypes + import ctypes.wintypes location = normpath(location)