Skip to content

Commit

Permalink
Merge pull request #159 from tommynsong/main
Browse files Browse the repository at this point in the history
remove trailing query
  • Loading branch information
SimOnPanw committed Oct 3, 2023
2 parents 16af89e + 4c4bfcc commit 30ac4b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ __pycache__/
*.py[cod]
*$py.class
dist/*
build/*

# OSX

Expand Down
2 changes: 1 addition & 1 deletion prismacloud/api/cwpp/_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ def cloud_discovery_scan_stop(self):
return self.execute_compute('POST', 'api/v1/cloud/discovery/stop')

def cloud_discovery_vms(self, query_params=None):
return self.execute_compute('GET', 'api/v1/cloud/discovery/vms?', query_params=query_params, paginated=True)
return self.execute_compute('GET', 'api/v1/cloud/discovery/vms', query_params=query_params, paginated=True)
2 changes: 1 addition & 1 deletion prismacloud/api/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" version file """

version = '5.2.7'
version = '5.2.8'

0 comments on commit 30ac4b6

Please sign in to comment.