1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2026-01-26 08:31:40 +00:00

Replace relative imports with absolute

This commit is contained in:
2022-06-01 00:22:46 -05:00
parent d37197c4f7
commit 448224954b
10 changed files with 26 additions and 26 deletions

View File

@@ -9,8 +9,8 @@ from __future__ import unicode_literals
from ctypes import cdll, byref, Structure, c_char, c_char_p
from ctypes.util import find_library
from ..compat import binary_type
from ..util import preprocess_paths
from send2trash.compat import binary_type
from send2trash.util import preprocess_paths
Foundation = cdll.LoadLibrary(find_library("Foundation"))
CoreServices = cdll.LoadLibrary(find_library("CoreServices"))