Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TytusKalicki authored and normandy7 committed Sep 18, 2023
1 parent e8ffc6e commit 445338a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/neptune/cli/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ def sync(
):
"""Synchronizes objects with unsent data to the server.
Neptune stores object data on disk in '.neptune' directories. If an object executes offline
or if network is unavailable as the run executes, object data can be synchronized
to the server with this command line utility.
Neptune stores object data on disk in the '.neptune' directory. If an object executes offline
or if the network is unavailable as the run executes, the object data can be synchronized
with the server with this command line utility.
You can list unsynchronized runs with `neptune status`
Expand Down
6 changes: 3 additions & 3 deletions src/neptune/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def log(
) -> None:
"""Logs the provided value or a collection of values.
Available for following field types:
Available for the following field types:
* `FloatSeries`
* `StringSeries`
Expand Down Expand Up @@ -661,7 +661,7 @@ def fetch_files_list(self) -> List[ArtifactFileData]:
def list_fileset_files(self, path: Optional[str] = None) -> List[FileEntry]:
"""Fetches metadata of the file set.
If the top-level artifact of the field is a directory, only the metadata from this directory is returned.
If the top-level artifact of the field is a directory, only the metadata of this directory is returned.
You can use the `path` argument to list metadata of the files contained inside the directory or subdirectories.
Args:
Expand Down Expand Up @@ -720,7 +720,7 @@ def __delitem__(self, path) -> None:
class ExtendUtils:
@staticmethod
def transform_to_extend_format(value):
"""Preserves the nested structure created by `namespaces` and `dict_like` objects,
"""Preserves the nested structure created by `Namespaces` and `dict_like` objects,
but replaces all other values with single-element lists,
so the work can be delegated to `extend` method."""
if isinstance(value, Namespace) or is_dict_like(value):
Expand Down

0 comments on commit 445338a

Please sign in to comment.