Skip to content

Commit

Permalink
fix: issue due to black formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Giriharan219 committed Nov 5, 2024
1 parent 6b7f2a1 commit 26af9a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/feeds/create_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
FEED_DESCRIPTION = ""
PLATFORM = Platform.WINDOWS
WORKSPACE_ID = (
None # None uses Default workspace. Replace with Systemlink workspace id.
None # None uses Default workspace. Replace with Systemlink workspace id.
)

server_url = "" # SystemLink API URL
server_api_key = "" # SystemLink API key

# Provide the valid API key and API URL for client intialization.
# Provide the valid API key and API URL for client initialization.
client = FeedsClient(HttpConfiguration(api_key=server_api_key, server_uri=server_url))

# Creating Feeds.
Expand Down
4 changes: 2 additions & 2 deletions examples/feeds/delete_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
FEED_NAME = ""
PLATFORM = Platform.WINDOWS
WORKSPACE_ID = (
None # None uses Default workspace. Replace with Systemlink workspace id.
None # None uses Default workspace. Replace with Systemlink workspace id.
)

server_url = "" # SystemLink API URL
server_api_key = "" # SystemLink API key

# Provide the valid API key and API URL for client intialization.
# Provide the valid API key and API URL for client initialization.
client = FeedsClient(HttpConfiguration(api_key=server_api_key, server_uri=server_url))

# Deleting Feed.
Expand Down
4 changes: 2 additions & 2 deletions examples/feeds/query_and_upload_feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
FEED_DESCRIPTION = ""
PLATFORM = Platform.WINDOWS
WORKSPACE_ID = (
None # None uses Default workspace. Replace with Systemlink workspace id.
None # None uses Default workspace. Replace with Systemlink workspace id.
)
PACKAGE_PATH = ""

server_url = "" # SystemLink API URL
server_api_key = "" # SystemLink API key

# Provide the valid API key and API URL for client intialization.
# Provide the valid API key and API URL for client initialization.
client = FeedsClient(HttpConfiguration(api_key=server_api_key, server_uri=server_url))

# To upload a package to feed.
Expand Down

0 comments on commit 26af9a6

Please sign in to comment.