We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f99a5f commit f813e03Copy full SHA for f813e03
pydocstringformatter/testutils/primer/packages.py
@@ -1,5 +1,4 @@
1
import logging
2
-import shutil
3
from dataclasses import dataclass
4
from pathlib import Path
5
from typing import Dict, List, Union
@@ -37,9 +36,6 @@ def lazy_clone(self) -> None:
37
36
"""Clone the repo, if necessary."""
38
logging.info("Lazy cloning %s", self.url)
39
40
- for i in self.clone_directory.iterdir():
41
- print(i)
42
- shutil.rmtree(self.clone_directory)
43
print("CHECK:", self.clone_directory.exists())
44
# Clone if not yet cloned
45
if not self.clone_directory.exists():
0 commit comments