Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
DobromirM committed Nov 14, 2024
2 parents a5fc41c + 66104d7 commit 194ad67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions swimos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from .client import SwimClient, IntervalStrategy
from .client import SwimClient, RetryStrategy, IntervalStrategy, ExponentialStrategy

__all__ = [SwimClient, IntervalStrategy]
__all__ = [SwimClient, RetryStrategy, IntervalStrategy, ExponentialStrategy]
4 changes: 2 additions & 2 deletions swimos/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.

from ._swim_client import SwimClient
from ._connections import IntervalStrategy
from ._connections import RetryStrategy, IntervalStrategy, ExponentialStrategy

__all__ = [SwimClient, IntervalStrategy]
__all__ = [SwimClient, RetryStrategy, IntervalStrategy, ExponentialStrategy]

0 comments on commit 194ad67

Please sign in to comment.