Hide some errant output

This commit is contained in:
Joe Rickerby
2020-11-24 19:02:50 +00:00
parent 5665b61cbf
commit 27bda4fa64
+1 -1
View File
@@ -73,7 +73,7 @@ class DockerContainer:
self.process.terminate()
self.process.wait()
subprocess.run(['docker', 'rm', '--force', '-v', self.name])
subprocess.run(['docker', 'rm', '--force', '-v', self.name], stdout=subprocess.DEVNULL)
self.name = None
def copy_into(self, from_path: Path, to_path: PurePath) -> None: