Skip to content

Commit

Permalink
fix: modified library sorted via isort tool
Browse files Browse the repository at this point in the history
  • Loading branch information
changemyminds committed Apr 10, 2024
1 parent 0b06bb3 commit 3a59dbb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@

import threading
from typing import Collection
from opentelemetry.instrumentation.instrumentor import BaseInstrumentor

from wrapt import wrap_function_wrapper

from opentelemetry import context, trace
from opentelemetry.instrumentation.instrumentor import BaseInstrumentor
from opentelemetry.instrumentation.threading.package import _instruments
from opentelemetry.instrumentation.threading.version import __version__
from opentelemetry import context, trace
from opentelemetry.instrumentation.instrumentor import BaseInstrumentor
from opentelemetry.instrumentation.utils import unwrap
from wrapt import wrap_function_wrapper


class ThreadingInstrumentor(BaseInstrumentor):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from concurrent import futures
import threading
from opentelemetry.test.test_base import TestBase
from opentelemetry.instrumentation.threading import ThreadingInstrumentor
from concurrent import futures

from opentelemetry import trace
from opentelemetry.instrumentation.threading import ThreadingInstrumentor
from opentelemetry.test.test_base import TestBase


class TestThreading(TestBase):
Expand Down

0 comments on commit 3a59dbb

Please sign in to comment.