Fix the constructor for the API client

This commit is contained in:
Nick Chambers 2022-08-17 22:34:46 -05:00
parent cf1d6147c1
commit 789aa609dd
2 changed files with 1 additions and 2 deletions

View File

@ -1,3 +1,3 @@
class Client:
def init(**kwargs):
def __init__(**kwargs):
print(kwargs)

View File

@ -2,4 +2,3 @@ import vultron.api
def main():
api = vultron.api.Client()
print("Hello, world!")