From 2e6e7c521baa92fc51b9f46df8b912ddb820272c Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Wed, 20 Nov 2024 10:50:41 +0000 Subject: [PATCH] docs: fix running instructions fix up running instructions after generation --- dlt_init_openapi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlt_init_openapi/__init__.py b/dlt_init_openapi/__init__.py index 12d956a..3074dc0 100644 --- a/dlt_init_openapi/__init__.py +++ b/dlt_init_openapi/__init__.py @@ -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"""