Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Aug 25, 2024
1 parent c7aac2c commit 757d123
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pylint/checkers/symilar.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import copy
import functools
import itertools
import logging
import operator
import re
import sys
Expand Down Expand Up @@ -878,7 +877,6 @@ def register(linter: PyLinter) -> None:

def Run(argv: Sequence[str] | None = None) -> NoReturn:
"""Standalone command line access point."""
logging.error(argv)
parser = argparse.ArgumentParser(
prog="symilar", description="Finds copy pasted blocks in a set of files."
)
Expand All @@ -898,7 +896,6 @@ def Run(argv: Sequence[str] | None = None) -> NoReturn:
ignore_imports=parsed_args.ignore_imports,
ignore_signatures=parsed_args.ignore_signatures,
)
logging.error(parsed_args.files)
for filename in parsed_args.files:
with open(filename, encoding="utf-8") as stream:
similar_runner.append_stream(filename, stream)
Expand Down

0 comments on commit 757d123

Please sign in to comment.