mypy: zulip: Annotate integrations/git/zulip_git_config.py.
This commit is contained in:
parent
59f81845dd
commit
af957c18fe
|
@ -19,7 +19,6 @@ os.chdir(os.path.dirname(TOOLS_DIR))
|
||||||
sys.path.append(os.path.dirname(TOOLS_DIR))
|
sys.path.append(os.path.dirname(TOOLS_DIR))
|
||||||
|
|
||||||
exclude = """
|
exclude = """
|
||||||
zulip/integrations/git/zulip_git_config.py
|
|
||||||
zulip/integrations/irc/irc_mirror_backend.py
|
zulip/integrations/irc/irc_mirror_backend.py
|
||||||
zulip/integrations/log2zulip/log2zulip
|
zulip/integrations/log2zulip/log2zulip
|
||||||
zulip/integrations/perforce/zulip_perforce_config.py
|
zulip/integrations/perforce/zulip_perforce_config.py
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
# THE SOFTWARE.
|
# THE SOFTWARE.
|
||||||
|
|
||||||
|
from typing import Dict, Text
|
||||||
|
|
||||||
# Change these values to configure authentication for the plugin
|
# Change these values to configure authentication for the plugin
|
||||||
ZULIP_USER = "git-bot@example.com"
|
ZULIP_USER = "git-bot@example.com"
|
||||||
|
@ -41,6 +42,7 @@ ZULIP_API_KEY = "0123456789abcdef0123456789abcdef"
|
||||||
# * topic "master"
|
# * topic "master"
|
||||||
# And similarly for branch "test-post-receive" (for use when testing).
|
# And similarly for branch "test-post-receive" (for use when testing).
|
||||||
def commit_notice_destination(repo, branch, commit):
|
def commit_notice_destination(repo, branch, commit):
|
||||||
|
# type: (Text, Text, Text) -> Dict[Text, Text]
|
||||||
if branch in ["master", "test-post-receive"]:
|
if branch in ["master", "test-post-receive"]:
|
||||||
return dict(stream = "commits",
|
return dict(stream = "commits",
|
||||||
subject = u"%s" % (branch,))
|
subject = u"%s" % (branch,))
|
||||||
|
@ -54,6 +56,7 @@ def commit_notice_destination(repo, branch, commit):
|
||||||
#
|
#
|
||||||
# return '!avatar(%s) [%s](https://example.com/commits/%s)\n' % (author, subject, commit_id)
|
# return '!avatar(%s) [%s](https://example.com/commits/%s)\n' % (author, subject, commit_id)
|
||||||
def format_commit_message(author, subject, commit_id):
|
def format_commit_message(author, subject, commit_id):
|
||||||
|
# type: (Text, Text, Text) -> Text
|
||||||
return '!avatar(%s) %s\n' % (author, subject)
|
return '!avatar(%s) %s\n' % (author, subject)
|
||||||
|
|
||||||
## If properly installed, the Zulip API should be in your import
|
## If properly installed, the Zulip API should be in your import
|
||||||
|
|
Loading…
Reference in a new issue