From 060b680674548881b13fcf7c3ee014369a3a62a5 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sat, 18 Feb 2017 18:39:27 -0800 Subject: [PATCH] mypy: Fix inconsistencies in use of *args/**kwargs. --- integrations/hg/zulip-changegroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/hg/zulip-changegroup.py b/integrations/hg/zulip-changegroup.py index e5784ca..c0bb9ca 100755 --- a/integrations/hg/zulip-changegroup.py +++ b/integrations/hg/zulip-changegroup.py @@ -114,7 +114,7 @@ def get_config(ui, item): return None def hook(ui, repo, **kwargs): - # type: (ui, repo, Optional[Text]) -> None + # type: (ui, repo, **Text) -> None """ Invoked by configuring a [hook] entry in .hg/hgrc. """