Skip to content

Commit 2ef1fef

Browse files
committed
Remove print
1 parent 773cb5a commit 2ef1fef

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

infrahub_sdk/testing/repository.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,11 @@ def path(self) -> str:
5858
return str(self.src_directory / self.name)
5959

6060
def init(self) -> None:
61-
dest = shutil.copytree(
61+
shutil.copytree(
6262
src=self.src_directory,
6363
dst=self.dst_directory / self.name,
6464
ignore=shutil.ignore_patterns(".git"),
6565
)
66-
print(dest)
6766

6867
self._repo = GitRepoManager(str(Path(self.dst_directory / self.name)), branch=self.initial_branch)
6968

0 commit comments

Comments
 (0)