Skip to content

Commit

Permalink
Fix typo in providers_manager.py (#40157)
Browse files Browse the repository at this point in the history
Signed-off-by: Kacper Muda <mudakacper@gmail.com>
  • Loading branch information
kacpermuda authored Jun 10, 2024
1 parent f7708ac commit 072c63b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def initialize_providers_filesystems(self):
self._discover_filesystems()

@provider_info_cache("dataset_uris")
def initializa_providers_dataset_uri_handlers(self):
def initialize_providers_dataset_uri_handlers(self):
"""Lazy initialization of provider dataset URI handlers."""
self.initialize_providers_list()
self._discover_dataset_uri_handlers()
Expand Down Expand Up @@ -1291,7 +1291,7 @@ def filesystem_module_names(self) -> list[str]:

@property
def dataset_uri_handlers(self) -> dict[str, Callable[[SplitResult], SplitResult]]:
self.initializa_providers_dataset_uri_handlers()
self.initialize_providers_dataset_uri_handlers()
return self._dataset_uri_handlers

@property
Expand Down

0 comments on commit 072c63b

Please sign in to comment.