forked from Mirror/pmbootstrap
pmb.commands.pull: Annotate return types (MR 2429)
This commit is contained in:
parent
0b4fb9119f
commit
405869db1b
1 changed files with 2 additions and 2 deletions
|
@ -9,10 +9,10 @@ import logging
|
||||||
|
|
||||||
|
|
||||||
class Pull(commands.Command):
|
class Pull(commands.Command):
|
||||||
def __init__(self):
|
def __init__(self) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def run(self):
|
def run(self) -> bool:
|
||||||
failed = []
|
failed = []
|
||||||
for repo in pmb.config.git_repos.keys():
|
for repo in pmb.config.git_repos.keys():
|
||||||
if pmb.helpers.git.pull(repo) < 0:
|
if pmb.helpers.git.pull(repo) < 0:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue