Skip to content

Commit d1ba472

Browse files
committed
- Removed unnecessary statements from the client.py
1 parent 7d097b3 commit d1ba472

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

okta/client.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
# This client class is typically generated based on an API specification (e.g., OpenAPI).
2626
# Changes to this file may be overwritten upon regeneration.
2727
# SEE CONTRIBUTOR DOCUMENTATION
28-
import os
29-
3028
import aiohttp
3129

3230
from okta.api.agent_pools_api import AgentPoolsApi
@@ -162,10 +160,6 @@ class Client(
162160

163161
def __init__(self, user_config: dict = {}):
164162
# Load configuration
165-
# Specific environment settings (e.g., for SSL CAs)
166-
os.environ["REQUESTS_CA_BUNDLE"] = "/Users/binoy.oza/prisma_certificates.pem"
167-
os.environ["SSL_CERT_FILE"] = "/Users/binoy.oza/.local/prisma_certificates.pem"
168-
169163
client_config_setter = ConfigSetter()
170164
client_config_setter._apply_config({'client': user_config})
171165
self._config = client_config_setter.get_config()

0 commit comments

Comments
 (0)