Skip to content

Commit

Permalink
Bug fix auth test
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewpeterkort committed Nov 18, 2024
1 parent 7351ace commit 14f0a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gripql/python/gripql/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class Graph(BaseConnection):
def __init__(self, url, graph, project_id=None, user=None, password=None, token=None, credential_file=None):
def __init__(self, url, graph, user=None, password=None, token=None, credential_file=None):
super(Graph, self).__init__(url, user, password, token, credential_file)
self.url = self.base_url + "/v1/graph/" + graph
self.graph = graph
Expand Down

0 comments on commit 14f0a58

Please sign in to comment.