keras/keras_core/utils/python_utils.py
2023-04-09 12:21:45 -07:00

10 lines
277 B
Python

def default(method):
"""Decorates a method to detect overrides in subclasses."""
method._is_default = True
return method
def is_default(method):
"""Check if a method is decorated with the `default` wrapper."""
return getattr(method, "_is_default", False)