5 lines
182 B
Python
5 lines
182 B
Python
def exclude_call_check(obj):
|
|
"""Decorator to mark a class or method to be excluded from public calls verification checks."""
|
|
obj.__exclude_call_check__ = True
|
|
return obj
|