Skip to content

Commit 7ae9805

Browse files
committed
conformance - remove unused curses dependency
Otherwise couldn't run conformance on Windows at all: ``` Traceback (most recent call last): File "L:\Projects\Github\typing\conformance\src\main.py", line 16, in <module> from reporting import generate_summary File "L:\Projects\Github\typing\conformance\src\reporting.py", line 10, in <module> from type_checker import TYPE_CHECKERS File "L:\Projects\Github\typing\conformance\src\type_checker.py", line 6, in <module> from curses.ascii import isspace File "L:\Software\Python312\Lib\curses\__init__.py", line 13, in <module> from _curses import * ModuleNotFoundError: No module named '_curses' ```
1 parent ed2fbd3 commit 7ae9805

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

conformance/src/type_checker.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"""
44

55
from abc import ABC, abstractmethod
6-
from curses.ascii import isspace
76
import json
87
from pathlib import Path
98
import os

0 commit comments

Comments
 (0)