Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit ac2f031

Browse files
authored
fix linting error (#13710)
1 parent 3d25169 commit ac2f031

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

localstack-core/localstack/dev/run/configurators.py

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -187,22 +187,23 @@ def try_mount_to_site_packages(self, cfg: ContainerConfiguration, sources_path:
187187

188188
class EntryPointMountConfigurator:
189189
"""
190-
Mounts ``entry_points.txt`` files of localstack and dependencies into the venv in the container.
190+
Mounts ``entry_points.txt`` files of localstack and dependencies into the venv in the container.
191+
192+
For example, when starting the pro container, the entrypoints of localstack-pro on the host would be in
193+
``~/workspace/localstack-pro/localstack-pro-core/localstack_ext.egg-info/entry_points.txt``
194+
which needs to be mounted into the distribution info of the installed dependency within the container:
195+
Mounts ``plux.ini`` files of localstack and localstack-pro into the venv in the container.
196+
For other dependencies, we mount the ``entry_points.txt`` build artifacts.
191197
192198
For example, when starting the pro container, the entrypoints of localstack-pro on the host would be in
193-
``~/workspace/localstack-pro/localstack-pro-core/localstack_ext.egg-info/entry_points.txt``
194-
which needs to be mounted into the distribution info of the installed dependency within the container:
195-
Mounts ``plux.ini`` files of localstack and localstack-pro into the venv in the container.
196-
For other dependencies, we mount the ``entry_points.txt`` build artifacts.
197-
198-
For example, when starting the pro container, the entrypoints of localstack-pro on the host would be in
199-
``~/workspace/localstack-pro/localstack-pro-core/plux.ini`` which needs to be mounted into the distribution info of the installed dependency within the container:
200-
``/opt/code/localstack/.venv/.../site-packages/localstack_ext-4.13.0.dev0.dist-info/entry_points.txt``.
201-
202-
For a dependency using plugins, the entrypoints would be in the build artifact at
203-
``~/workspace/<dependency>/<package-name>.egg-info/entry_points.txt``
204-
which also needs to be mounted into the distribution info of the installed dependency within the container:
205-
``/opt/code/localstack/.venv/.../site-packages/<package-name>.dist-info/entry_points.txt``.
199+
``~/workspace/localstack-pro/localstack-pro-core/plux.ini`` which needs to be mounted into the distribution info
200+
of the installed dependency within the container:
201+
``/opt/code/localstack/.venv/.../site-packages/localstack_ext-4.13.0.dev0.dist-info/entry_points.txt``.
202+
203+
For a dependency using plugins, the entrypoints would be in the build artifact at
204+
``~/workspace/<dependency>/<package-name>.egg-info/entry_points.txt``
205+
which also needs to be mounted into the distribution info of the installed dependency within the container:
206+
``/opt/code/localstack/.venv/.../site-packages/<package-name>.dist-info/entry_points.txt``.
206207
"""
207208

208209
entry_point_glob = (

0 commit comments

Comments
 (0)