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 043ef07 commit a4d81d1Copy full SHA for a4d81d1
.fernignore
@@ -1,4 +1,5 @@
1
# Specify files that shouldn't be modified by Fern
2
src/axiomatic/axtract.py
3
src/axiomatic/magic.py
4
-src/axiomatic/pic_helpers.py
+src/axiomatic/pic_helpers.py
5
+src/axiomatic/document_helpers.py
src/axiomatic/client.py
@@ -0,0 +1,7 @@
+from .base_client import BaseClient, AsyncBaseClient
+
+class Axiomatic(BaseClient): ...
6
7
+class AsyncAxiomatic(AsyncBaseClient): ...
src/axiomatic/document_helper.py
@@ -0,0 +1 @@
+def from_url(url: str) -> str: ...
0 commit comments