Skip to content

Commit

Permalink
MAINT: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi committed Feb 24, 2023
1 parent 78861f5 commit f9dc18f
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions mesonpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@


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

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

Expand Down Expand Up @@ -956,16 +956,6 @@ def _copy_files(self) -> Dict[str, str]:
)
return copy_files

@property
def _lib_paths(self) -> Set[str]:
copy_files = self._copy_files
return {
os.path.dirname(copy_files[file])
for files in self._install_plan.values()
for file, details in files.items()
if details['destination'].startswith('{libdir_')
}

@property
def _meson_name(self) -> str:
"""Name in meson.build."""
Expand Down

0 comments on commit f9dc18f

Please sign in to comment.