supriya-project / uqbar

Tools for building documentation with Sphinx, Graphviz and LaTeX
https://supriya-project.github.io/uqbar
MIT License
13 stars 7 forks source link

Teach mypy more about uqbar.graphs.Attachable #34

Closed trevorbaca closed 5 years ago

trevorbaca commented 5 years ago

mypy 0.720 breaks in two places each in RecordField and TableCell:

/Users/trevorbaca/tmp/typehints/uqbar/graphs/RecordField.py:7: error: Module "uqbar.graphs.Attachable" is not valid as a type /Users/trevorbaca/tmp/typehints/uqbar/graphs/RecordField.py:7: error: Invalid base class "Attachable" /Users/trevorbaca/tmp/typehints/uqbar/graphs/TableCell.py:7: error: Module "uqbar.graphs.Attachable" is not valid as a type /Users/trevorbaca/tmp/typehints/uqbar/graphs/TableCell.py:7: error: Invalid base class "Attachable"

All four breaks look like the same thing, having to do with the typing status of Attachable.

josiah-wolf-oberholtzer commented 5 years ago

Done in https://github.com/josiah-wolf-oberholtzer/uqbar/pull/35