diff --git a/pygount/analysis.py b/pygount/analysis.py index 0a7ea4a..78b90e4 100644 --- a/pygount/analysis.py +++ b/pygount/analysis.py @@ -520,15 +520,12 @@ def close(self): rmtree(self._source_patterns) except OSError as e: print(f"Error: {e.filename} - {e.strerror}.") - print("exit method called") def __enter__(self): - print("enter") return self def __exit__(self, exc_type, exc_val, exc_tb): self.close() - print("exit method called") return False @property