Skip to content

Fix incorrectly called no-args constructor exception message

Jez Higgins requested to merge jezhiggins/cell:master into master

Calling a no-args constructor with some parameters is, obviously, an error. Python used to raise a TypeError("object() takes no parameters"), but now raises TypeError("() takes no arguments").

This commit brings Cell's error message into line with Python's.

Merge request reports