Skip to content

Commit

Permalink
Fix missed spots (#29702)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenttran-msft authored Apr 3, 2023
1 parent 60a79b6 commit 1acdf32
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ def get_file_client(self, file # type: Union[FileProperties, str]
return DataLakeFileClient(
self.url, self.file_system_name, file_path=file_path, credential=self._raw_credential,
api_version=self.api_version,
_hosts=self._hosts, _configuration=self._config, _pipeline=self._pipeline)
_hosts=self._hosts, _configuration=self._config, _pipeline=_pipeline)

def get_sub_directory_client(self, sub_directory # type: Union[DirectoryProperties, str]
):
Expand Down Expand Up @@ -660,4 +660,4 @@ def get_sub_directory_client(self, sub_directory # type: Union[DirectoryPropert
return DataLakeDirectoryClient(
self.url, self.file_system_name, directory_name=subdir_path, credential=self._raw_credential,
api_version=self.api_version,
_hosts=self._hosts, _configuration=self._config, _pipeline=self._pipeline)
_hosts=self._hosts, _configuration=self._config, _pipeline=_pipeline)
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ def get_file_client(self, file # type: Union[FileProperties, str]
return DataLakeFileClient(
self.url, self.file_system_name, file_path=file_path, credential=self._raw_credential,
api_version=self.api_version,
_hosts=self._hosts, _configuration=self._config, _pipeline=self._pipeline)
_hosts=self._hosts, _configuration=self._config, _pipeline=_pipeline)

def get_sub_directory_client(self, sub_directory # type: Union[DirectoryProperties, str]
):
Expand Down Expand Up @@ -646,4 +646,4 @@ def get_sub_directory_client(self, sub_directory # type: Union[DirectoryPropert
return DataLakeDirectoryClient(
self.url, self.file_system_name, directory_name=subdir_path, credential=self._raw_credential,
api_version=self.api_version,
_hosts=self._hosts, _configuration=self._config, _pipeline=self._pipeline)
_hosts=self._hosts, _configuration=self._config, _pipeline=_pipeline)
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def get_file_system_client(self, file_system # type: Union[FileSystemProperties
return FileSystemClient(self.url, file_system_name, credential=self._raw_credential,
api_version=self.api_version,
_configuration=self._config,
_pipeline=self._pipeline, _hosts=self._hosts)
_pipeline=_pipeline, _hosts=self._hosts)

def get_directory_client(self, file_system, # type: Union[FileSystemProperties, str]
directory # type: Union[DirectoryProperties, str]
Expand Down Expand Up @@ -428,7 +428,7 @@ def get_directory_client(self, file_system, # type: Union[FileSystemProperties,
return DataLakeDirectoryClient(self.url, file_system_name, directory_name=directory_name,
credential=self._raw_credential,
api_version=self.api_version,
_configuration=self._config, _pipeline=self._pipeline,
_configuration=self._config, _pipeline=_pipeline,
_hosts=self._hosts)

def get_file_client(self, file_system, # type: Union[FileSystemProperties, str]
Expand Down Expand Up @@ -475,7 +475,7 @@ def get_file_client(self, file_system, # type: Union[FileSystemProperties, str]
return DataLakeFileClient(
self.url, file_system_name, file_path=file_path, credential=self._raw_credential,
api_version=self.api_version,
_hosts=self._hosts, _configuration=self._config, _pipeline=self._pipeline)
_hosts=self._hosts, _configuration=self._config, _pipeline=_pipeline)

async def set_service_properties(self, **kwargs):
# type: (**Any) -> None
Expand Down

0 comments on commit 1acdf32

Please sign in to comment.