diff options
Diffstat (limited to '')
-rw-r--r-- | tokens.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,8 +1,10 @@ -# coding: utf-8 + +from __future__ import annotations from ruamel.yaml.compat import nprintf # NOQA -from typing import Text, Any, Dict, Optional, List # NOQA +if False: # MYPY + from typing import Text, Any, Dict, Optional, List # NOQA from .error import StreamMark # NOQA SHOW_LINES = True |