Skip to content

Commit b25c540

Browse files
committed
Comment out some print statements
1 parent 52d2d87 commit b25c540

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pep8speaks/helpers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def read_setup_cfg_file(setup_config_file):
5656
if not setup_config_found:
5757
return new_config
5858

59-
print(setup_config_section)
59+
# print(setup_config_section)
6060
# These ones are of type string
6161
keys = ["max-line-length", "count", "first", "show-pep8", "show-source", "statistics", "hang-closing"]
6262
for key in keys:
@@ -82,7 +82,7 @@ def read_setup_cfg_file(setup_config_file):
8282
except KeyError:
8383
pass
8484

85-
print("new_config", new_config)
85+
# print("new_config", new_config)
8686
return new_config
8787

8888

@@ -117,7 +117,7 @@ def get_config(repo, base_branch, after_commit_hash):
117117
new_setup_config = read_setup_cfg_file(setup_config_file)
118118
config = utils.update_dict(config, new_setup_config)
119119

120-
print("config after updating", config)
120+
# print("config after updating", config)
121121
# Read .pep8speaks.yml
122122
new_config_text = ""
123123

0 commit comments

Comments
 (0)