mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
types: add return type
This commit is contained in:
parent
1a685ea8c0
commit
3b923abe01
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ from typing import (
|
|||
from urllib.error import HTTPError
|
||||
from urllib.request import urlopen
|
||||
|
||||
__version__ = "23.5a1-17-gea9a184-dev"
|
||||
__version__ = "23.5a1-18-g1a685ea-dev"
|
||||
|
||||
|
||||
class Config:
|
||||
|
@ -781,7 +781,7 @@ def combined_spec(reqs: List[str], requirements: Path) -> List[str]:
|
|||
return reqs
|
||||
|
||||
|
||||
def resolve_deps(args: Namespace):
|
||||
def resolve_deps(args: Namespace) -> List[str]:
|
||||
spec = combined_spec(args.reqs, args.requirements)
|
||||
|
||||
with tempfile.TemporaryDirectory(prefix="viv-") as tmpdir:
|
||||
|
|
Loading…
Reference in a new issue