Skip to content

Commit 87ff000

Browse files
committed
Don't split by any line
1 parent 2fbde7d commit 87ff000

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/arcticdb/util/venv.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,8 @@ def execute(self, python_commands: List[str], dfs: Optional[Dict] = None) -> Non
130130

131131
# Add prints for tracebility
132132
def add_prints(python_commands):
133-
python_command_str = "\n".join(python_commands)
134133
result = []
135-
for command in python_command_str.split("\n"):
134+
for command in python_commands:
136135
result.append(f"print('About to run:', {repr(command)})")
137136
result.append(command)
138137
result.append(f"print('Done with:', {repr(command)})")

0 commit comments

Comments
 (0)