Skip to content

Commit a24473f

Browse files
committed
fix: address self review comments
1 parent 33c80fb commit a24473f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

nisystemlink/clients/feeds/_feeds_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __query_feeds(
4949
platform: Optional[str] = None,
5050
workspace: Optional[str] = None,
5151
) -> models.QueryFeedsResponse:
52-
"""Available feeds for the Platform `platform` under the Workspace `workspace`
52+
"""Lists available feeds for the Platform `platform` under the Workspace `workspace`.
5353
5454
Args:
5555
platform (Optional[str]): Information about system platform. Defaults to None.
@@ -103,7 +103,7 @@ def __upload_package(
103103
104104
Args:
105105
feed_id (str): ID of the feed.
106-
package (Part): Package file as a form data.
106+
package (Part): Package file to be uploaded.
107107
overwrite (Query): Set to True, to overwrite the package if it already exists.\
108108
Defaults to False.
109109

nisystemlink/clients/feeds/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from ._create_feeds import CreateFeedRequest
1+
from ._create_feed import CreateFeedRequest
22
from ._feed import Feed
33
from ._package import Package
44
from ._platform import Platform
File renamed without changes.

nisystemlink/clients/feeds/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def get_feed_by_name(
99
feeds: List[Feed],
1010
name: str,
1111
) -> Optional[Feed]:
12-
"""Get feed id from the list of feeds using `name`.
12+
"""Get feed information from the list of feeds using `name`.
1313
1414
Args:
1515
feeds (List[Feed]): List of feeds.

0 commit comments

Comments
 (0)