keras/keras_core/utils/python_utils.py

10 lines
277 B
Python
Raw Normal View History

2023-04-09 19:21:45 +00:00
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)