mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-29 20:34:22 +01:00
Remove type ignore
This commit is contained in:
parent
565d72f662
commit
3e38986f27
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ class Slackbuilds(Configs):
|
|||
deps_logs.update(deps)
|
||||
self.deps_log_file.write_text(json.dumps(deps_logs, indent=4))
|
||||
|
||||
def find_package_for_install(self, name: str) -> str: # type: ignore[return]
|
||||
def find_package_for_install(self, name: str) -> str:
|
||||
version: str = self.data[name]['version']
|
||||
pattern: str = f'{name}-{version}*{self.repo_tag}*'
|
||||
packages: list = [file.name for file in self.tmp_path.glob(pattern)]
|
||||
|
|
Loading…
Add table
Reference in a new issue