__mapper_args__ = {
"polymorphic_on": __table__.c.type,
- "polymorhpic_identity": "person",
+ "polymorphic_identity": "person",
}
The "imperative table" form is also used when a non-:class:`_schema.Table`
# entities are used.
#
# here we are trying to distinguish between a path that starts
- # on a the with_polymorhpic entity vs. one that starts on a
+ # on a with_polymorphic entity vs. one that starts on a
# normal entity that introduces a with_polymorphic() in the
# middle using of_type():
#
run_setup_mappers = "once"
-class ExplicitWithPolymorhpicTest(
+class ExplicitWithPolymorphicTest(
_poly_fixtures._PolymorphicUnions, AssertsCompiledSQL
):
__dialect__ = "default"