Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion schemainspect/pg/obj.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def __eq__(self, other):
return (
self.signature == other.signature
and self.result_string == other.result_string
and self.definition == other.definition
and self.definition.split() == other.definition.split()
and self.language == other.language
and self.volatility == other.volatility
and self.strictness == other.strictness
Expand Down