Comment out unused (and unneeded?) default_branch

This commit is contained in:
Marcel Kapfer 2021-05-26 20:47:54 +02:00
parent a194f21d8a
commit 8659de71cd
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ import subprocess
def main():
# # TODO: Add user defined keywords to the list.
# ignored_keywords = ["pre", "rc", "beta", "alpha", "dev"]
# TODO: Add a ability for the user to customize this.
default_branch = "master"
# # TODO: Add a ability for the user to customize this.
# default_branch = "main"
# Retrieve all tags in the repo (that are fetched...)
tags = subprocess.run(["git", "tag"], stdout=subprocess.PIPE)