Skip to content

Commit

Permalink
chore: auto-fix lint and format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
octavia-squidington-iii committed Jan 8, 2025
1 parent 7491821 commit 13097b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,7 @@ def _build_erd_container(self, connector_directory: Directory, discovered_catalo
.with_workdir("/app")
)

return container.with_exec(["poetry", "lock"], use_entrypoint=True).with_exec(
["poetry", "install"], use_entrypoint=True
)
return container.with_exec(["poetry", "lock"], use_entrypoint=True).with_exec(["poetry", "install"], use_entrypoint=True)


class UploadDbmlSchema(Step):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,5 @@ async def _build_test_container(self, target_container_id: str) -> Container:
)
)

container = container.with_exec(["poetry", "lock"], use_entrypoint=True).with_exec(
["poetry", "install"], use_entrypoint=True
)
container = container.with_exec(["poetry", "lock"], use_entrypoint=True).with_exec(["poetry", "install"], use_entrypoint=True)
return container

0 comments on commit 13097b9

Please sign in to comment.