Skip to content

Commit

Permalink
Merge pull request #2 from pyvista/bug/fix_py38_ci
Browse files Browse the repository at this point in the history
Fix CI testing for python 3.8
  • Loading branch information
user27182 authored Jan 9, 2024
2 parents 87afdf7 + 69a3604 commit dc507e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions npt_promote/mypy_plugin.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from typing import Any, Callable, Final, Optional, Type
from typing import Any, Callable, Final, List, Optional, Type

import numpy as np
from mypy.plugin import ClassDefContext, Plugin
from mypy.types import Instance

__all__: list[str] = []
__all__: List[str] = []


def _get_type_fullname(typ: Any) -> str:
Expand Down

0 comments on commit dc507e4

Please sign in to comment.