From 445338a56ac6b6e2e2e6a55774e743fc7a1b01de Mon Sep 17 00:00:00 2001 From: "tytus.kalicki" Date: Mon, 18 Sep 2023 13:54:47 +0200 Subject: [PATCH] fixes --- src/neptune/cli/commands.py | 6 +++--- src/neptune/handler.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/neptune/cli/commands.py b/src/neptune/cli/commands.py index 8f46a3d1e..5d7d944d4 100644 --- a/src/neptune/cli/commands.py +++ b/src/neptune/cli/commands.py @@ -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` diff --git a/src/neptune/handler.py b/src/neptune/handler.py index 3cec7b34f..331f53001 100644 --- a/src/neptune/handler.py +++ b/src/neptune/handler.py @@ -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` @@ -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: @@ -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):