Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dlt_init_openapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def render(self, dry: bool = False) -> None:
logger.warning("You have not selected any endpoints, all endpoints will be rendered.")
self.renderer.run(self.openapi, dry=dry)
logger.success(f"Rendered project to: {self.config.project_dir}")
logger.info("You can now run your pipeline from this folder with 'python pipeline.py'.")
logger.info("You can now run your pipeline from this folder with 'python {self.config.project_dir}.py'.")

def print_warnings(self) -> None:
"""print warnings to logger if any where encountered for endpoints that are being rendered"""
Expand Down