Skip to content

Commit 8ed3df0

Browse files
committed
rename vars
Signed-off-by: mgorsk1 <[email protected]>
1 parent c08ae6c commit 8ed3df0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/testcontainers/core/container.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ def start(self) -> Self:
149149
if self._network:
150150
self._network.connect(self._container.id, self._network_aliases)
151151

152-
for file in self._files:
153-
source, destination = file[0], file[1]
152+
for copy_spec in self._files:
153+
source, destination = copy_spec[0], copy_spec[1]
154154

155155
DockerContainer._put_file_in_container(self._container, source, destination)
156156

0 commit comments

Comments
 (0)