Skip to content

Commit 6e93729

Browse files
committed
Removed default values for token + server
1 parent 3983452 commit 6e93729

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/codeflare_sdk/cluster/auth.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"""
2121

2222
import abc
23-
import os
2423
from kubernetes import client, config
2524

2625
global api_client
@@ -74,8 +73,8 @@ class TokenAuthentication(Authentication):
7473

7574
def __init__(
7675
self,
77-
token: str = None,
78-
server: str = None,
76+
token: str,
77+
server: str,
7978
skip_tls: bool = False,
8079
ca_cert_path: str = "/etc/pki/tls/certs/ca-bundle.crt",
8180
):

0 commit comments

Comments
 (0)