diff options
Diffstat (limited to 'mesonbuild/modules/unstable_cuda.py')
-rw-r--r-- | mesonbuild/modules/unstable_cuda.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/modules/unstable_cuda.py b/mesonbuild/modules/unstable_cuda.py index 9ab2fd7..6d7f82d 100644 --- a/mesonbuild/modules/unstable_cuda.py +++ b/mesonbuild/modules/unstable_cuda.py @@ -11,12 +11,13 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import annotations import typing as T import re from ..mesonlib import version_compare -from ..compilers import CudaCompiler, Compiler +from ..compilers import CudaCompiler from . import NewExtensionModule @@ -27,6 +28,7 @@ from ..interpreterbase import ( if T.TYPE_CHECKING: from . import ModuleState + from ..compilers import Compiler class CudaModule(NewExtensionModule): |