pan-scm-cli 0.3.1__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pan-scm-cli
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: CICD and Network Engineer-friendly CLI tool for Palo Alto Networks Strata Cloud Manager
5
5
  Author: Calvin Remsburg
6
6
  Author-email: dev@cdot.io
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pan-scm-cli"
3
- version = "0.3.1"
3
+ version = "0.3.2"
4
4
  description = "CICD and Network Engineer-friendly CLI tool for Palo Alto Networks Strata Cloud Manager"
5
5
  authors = ["Calvin Remsburg <dev@cdot.io>"]
6
6
  readme = "README.md"
@@ -97,9 +97,9 @@ def get_auth_config() -> dict[str, str]:
97
97
 
98
98
  # First try environment variables (PREFIX_client_id)
99
99
  auth = {
100
- "client_id": settings.get("client_id"),
101
- "client_secret": settings.get("client_secret"),
102
- "tsg_id": settings.get("tsg_id"),
100
+ "client_id": str(settings.get("client_id")),
101
+ "client_secret": str(settings.get("client_secret")),
102
+ "tsg_id": str(settings.get("tsg_id")),
103
103
  }
104
104
 
105
105
  # For backward compatibility, also check the scm_ prefixed settings
File without changes
File without changes