Skip to content

Commit

Permalink
Remove debug print statements (#67)
Browse files Browse the repository at this point in the history
* Remove debug print statements

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
Sillocan and pre-commit-ci[bot] committed Aug 4, 2023
1 parent d48b79b commit be53ca8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 0.11.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
Expand All @@ -12,7 +12,7 @@ message = Release {new_version}

[bumpversion:part:release]
optional_value = gamma
values =
values =
dev
a
b
Expand Down
1 change: 1 addition & 0 deletions changes/66.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove debug print statements
1 change: 0 additions & 1 deletion giturlparse/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def parse(url, check_domain=True):

# Skip if not matched
if not match:
print("[{}] URL: {} dit not match {}".format(name, url, regex.pattern))
continue

# Skip if domain is bad
Expand Down
1 change: 0 additions & 1 deletion giturlparse/platforms/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def __init__(self):

@staticmethod
def clean_data(data):
print(data)
data["path"] = ""
data["branch"] = ""
data["protocols"] = list(filter(lambda x: x, data.get("protocols", "").split("+")))
Expand Down

0 comments on commit be53ca8

Please sign in to comment.