Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion singlestoredb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
DataError, ManagementError,
)
from .management import (
manage_cluster, manage_workspaces,
manage_cluster, manage_workspaces, manage_files,
)
from .types import (
Date, Time, Timestamp, DateFromTicks, TimeFromTicks, TimestampFromTicks,
Expand Down
1 change: 1 addition & 0 deletions singlestoredb/management/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
from .cluster import manage_cluster
from .files import manage_files
from .manager import get_token
from .workspace import get_organization
from .workspace import get_secret
Expand Down
Loading