We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e5b94 commit 1f92f67Copy full SHA for 1f92f67
src/axiomatic/magic.py
@@ -13,18 +13,16 @@ class AXMagic:
13
"""Class implementing magic functions for IPython.
14
Import with `%load_ext axiomatic.magic`."""
15
16
- api_key: str
17
client: Axiomatic
18
query: str
19
20
- def __init__(self, api_key: Optional[str] = os.getenv("AXIOMATIC_API_KEY")):
+ def __init__(self):
21
self.folder = platformdirs.user_config_dir("axiomatic")
22
23
- self.api_key = api_key
24
- self.client = Axiomatic(api_key=api_key)
+ self.client = Axiomatic()
25
self.query = ""
26
27
- def ax_api(self, query):
+ def ax_api(self, *args, **kwargs):
28
pass
29
30
def axquery(self, query, cell=None):
0 commit comments