Skip to content

Commit

Permalink
fixup! feat: update client factory methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mtth committed Jun 18, 2024
1 parent 6763e74 commit c3d0f3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions opvious/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

from .client import Client, ClientSetting, Problem
from .client import Client, DEMO_ENDPOINT, Problem
from .common import __version__, Annotation
from .data.outcomes import (
AbortedOutcome,
Expand Down Expand Up @@ -51,7 +51,7 @@
__all__ = [
# Client
"Client",
"ClientSetting",
"DEMO_ENDPOINT",
# Executors
"executors",
# Specifications
Expand Down
4 changes: 2 additions & 2 deletions opvious/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .common import Problem
from .handlers import Client, DEMO_ENDPOINT
from .common import DEMO_ENDPOINT, Problem
from .handlers import Client

__all__ = [
"Client",
Expand Down

0 comments on commit c3d0f3f

Please sign in to comment.