Skip to content

Commit 0c333ab

Browse files
committed
address PR comments
1 parent 1d7538f commit 0c333ab

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/datacustomcode/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def write_to_dmo(
220220
return self._writer.write_to_dmo(name, dataframe, write_mode, **kwargs)
221221

222222
def find_file_path(self, file_name: str) -> Path:
223-
"""Read a file from the local file system."""
223+
"""Return a file path"""
224224

225225
return self._file.find_file_path(file_name)
226226

src/datacustomcode/file/path/default.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ def _get_config_based_file_path(self, file_name: str, config_path: Path) -> Path
148148
"""
149149
relative_path = f"{self.file_folder}/{file_name}"
150150
return Path(relative_path)
151-
# return config_path.parent.joinpath(relative_path)
152151

153152
def _find_file_in_tree(self, filename: str, search_path: Path) -> Optional[Path]:
154153
"""Find a file within a directory tree.

0 commit comments

Comments
 (0)