Skip to content

Commit 306af9e

Browse files
committed
fix annotation
1 parent 493c47f commit 306af9e

File tree

1 file changed

+1
-1
lines changed
  • airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/migrate_to_logging_logger

1 file changed

+1
-1
lines changed

airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/migrate_to_logging_logger/pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ async def _run(self) -> StepResult:
7575

7676
return StepResult(step=self, status=StepStatus.SUCCESS)
7777

78-
def replace_text_in_files(self, root_dir: str, old_text: str, new_text: str) -> None:
78+
def replace_text_in_files(self, root_dir: Path, old_text: str, new_text: str) -> None:
7979
for dirpath, dirnames, filenames in os.walk(root_dir):
8080
for filename in filenames:
8181
if filename.endswith(".py"):

0 commit comments

Comments
 (0)