Skip to content

Commit 9f99a5f

Browse files
committed
Fix runner potentially?
1 parent 8824566 commit 9f99a5f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pydocstringformatter/testutils/primer/packages.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import logging
2+
import shutil
23
from dataclasses import dataclass
34
from pathlib import Path
45
from typing import Dict, List, Union
@@ -38,6 +39,7 @@ def lazy_clone(self) -> None:
3839

3940
for i in self.clone_directory.iterdir():
4041
print(i)
42+
shutil.rmtree(self.clone_directory)
4143
print("CHECK:", self.clone_directory.exists())
4244
# Clone if not yet cloned
4345
if not self.clone_directory.exists():

0 commit comments

Comments
 (0)