Skip to content

Commit f9dc18f

Browse files
committed
MAINT: remove unused code
1 parent 78861f5 commit f9dc18f

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

mesonpy/__init__.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656

5757
if typing.TYPE_CHECKING: # pragma: no cover
58-
from typing import Any, Callable, ClassVar, DefaultDict, List, Optional, Sequence, Set, TextIO, Tuple, Type, TypeVar, Union
58+
from typing import Any, Callable, ClassVar, DefaultDict, List, Optional, Sequence, TextIO, Tuple, Type, TypeVar, Union
5959

6060
from mesonpy._compat import Iterator, Literal, ParamSpec, Path
6161

@@ -956,16 +956,6 @@ def _copy_files(self) -> Dict[str, str]:
956956
)
957957
return copy_files
958958

959-
@property
960-
def _lib_paths(self) -> Set[str]:
961-
copy_files = self._copy_files
962-
return {
963-
os.path.dirname(copy_files[file])
964-
for files in self._install_plan.values()
965-
for file, details in files.items()
966-
if details['destination'].startswith('{libdir_')
967-
}
968-
969959
@property
970960
def _meson_name(self) -> str:
971961
"""Name in meson.build."""

0 commit comments

Comments
 (0)