Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some default headers to wrapped client libs #43

Merged
merged 7 commits into from
Sep 29, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix circular imports
  • Loading branch information
lqmanh committed Aug 27, 2021
commit 027bfb5657acfb97c24f64d729b6cd0321ac2547
4 changes: 2 additions & 2 deletions supabase_py/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__version__ = "0.0.2"

from supabase_py import client, lib
from supabase_py.client import Client, create_client

__version__ = "0.0.2"

__all__ = ["client", "lib", "Client", "create_client"]