Spaces:
Runtime error
Runtime error
File size: 345 Bytes
999c5c9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """
DeepLabCut Toolbox (deeplabcut.org)
© A. & M. Mathis Labs
Licensed under GNU Lesser General Public License v3.0
"""
class DLCLiveError(Exception):
""" Generic error type for incorrect use of the DLCLive class """
pass
class DLCLiveWarning(Warning):
""" Generic warning for incorrect use of the DLCLive class """
pass
|