diff options
Diffstat (limited to 'mesonbuild/backend/vs2013backend.py')
-rw-r--r-- | mesonbuild/backend/vs2013backend.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mesonbuild/backend/vs2013backend.py b/mesonbuild/backend/vs2013backend.py index 37724db..44d45d6 100644 --- a/mesonbuild/backend/vs2013backend.py +++ b/mesonbuild/backend/vs2013backend.py @@ -11,13 +11,15 @@ # 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 from .vs2010backend import Vs2010Backend from ..mesonlib import MesonException -from ..interpreter import Interpreter -from ..build import Build import typing as T +if T.TYPE_CHECKING: + from ..build import Build + from ..interpreter import Interpreter class Vs2013Backend(Vs2010Backend): def __init__(self, build: T.Optional[Build], interpreter: T.Optional[Interpreter]): |