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 poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ python = "^3.9"
grpcio = {version=">=1.49.0,<2.0"}
protobuf = {version=">=4.21"}
ni-measurement-plugin-sdk = {version=">=2.3"}
typing-extensions = ">=4.13.2"

[tool.poetry.group.dev.dependencies]
types-grpcio = ">=1.0"
Expand Down
5 changes: 2 additions & 3 deletions src/nipanel/_panel_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@

import logging
import threading
from typing import TypeVar, Callable
from typing import Callable, TypeVar

import grpc
from ni.pythonpanel.v1.python_panel_service_pb2 import OpenPanelRequest
from ni.pythonpanel.v1.python_panel_service_pb2_grpc import PythonPanelServiceStub
from ni_measurement_plugin_sdk_service.discovery import DiscoveryClient
from ni_measurement_plugin_sdk_service.grpc.channelpool import GrpcChannelPool

from nipanel._typing import ParamSpec
from typing_extensions import ParamSpec

_P = ParamSpec("_P")
_T = TypeVar("_T")
Expand Down
133 changes: 0 additions & 133 deletions src/nipanel/_typing.py

This file was deleted.