Commit 1404d879 authored by Joseph Siddons's avatar Joseph Siddons
Browse files

docs: docstring for error and warning classes

...@@ -11,10 +11,14 @@ Numeric = TypeVar("Numeric", int, float, datetime, date) ...@@ -11,10 +11,14 @@ Numeric = TypeVar("Numeric", int, float, datetime, date)
class SortedWarning(Warning): class SortedWarning(Warning):
"""Warning class for Sortedness"""
pass pass
class SortedError(Exception): class SortedError(Exception):
"""Error class for Sortedness"""
pass pass
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment