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 704cbdf commit a798795Copy full SHA for a798795
src/exception_with_retry/__init__.py
@@ -6,6 +6,9 @@
6
else:
7
from importlib_metadata import PackageNotFoundError, version # pragma: no cover
8
9
+from exception_with_retry.source import ExceptionWithRetry, exception_with_retry
10
+
11
+__all__ = ["ExceptionWithRetry", "exception_with_retry"]
12
try:
13
# Change here if project is renamed and does not equal the package name
14
dist_name = "exception-with-retry"
tests/test_1.py
@@ -1,7 +1,7 @@
1
import unittest
2
from typing import List
3
4
-from exception_with_retry.source import ExceptionWithRetry, exception_with_retry
+from exception_with_retry import ExceptionWithRetry, exception_with_retry
5
__author__ = "Doru Irimescu"
__copyright__ = "Doru Irimescu"
0 commit comments