We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 826195a commit 9023fa4Copy full SHA for 9023fa4
src/dotenv/main.py
@@ -85,8 +85,7 @@ def is_surrounded_by(string, char):
85
def parse_binding(string, position):
86
# type: (Text, int) -> Tuple[Binding, int]
87
match = _binding.match(string, position)
88
- if TYPE_CHECKING:
89
- assert match is not None
+ assert match is not None
90
(matched, key, value) = match.groups()
91
if key is None or value is None:
92
key = None
0 commit comments