Skip to content

Commit b403a79

Browse files
committed
chore: Tool.main override to pass args/kwargs down
Signed-off-by: Brian Harring <ferringb@gmail.com>
1 parent 4d2ad0d commit b403a79

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pkgcheck/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515

1616
class Tool(commandline.Tool):
17-
def main(self):
17+
def main(self, *args, **kwargs):
1818
# suppress all pkgcore log messages
1919
logging.getLogger("pkgcore").setLevel(100)
20-
return super().main()
20+
return super().main(*args, **kwargs)
2121

2222

2323
class ConfigParser(configparser.ConfigParser):

0 commit comments

Comments
 (0)