Skip to content

Commit ef0faf8

Browse files
committed
rename vars
Signed-off-by: mgorsk1 <[email protected]>
1 parent 2ad9e6f commit ef0faf8

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
@@ -133,8 +133,8 @@ def start(self) -> Self:
133133
if self._network:
134134
self._network.connect(self._container.id, self._network_aliases)
135135

136-
for file in self._files:
137-
source, destination = file[0], file[1]
136+
for copy_spec in self._files:
137+
source, destination = copy_spec[0], copy_spec[1]
138138

139139
DockerContainer._put_file_in_container(self._container, source, destination)
140140

0 commit comments

Comments
 (0)