最佳答案
In Python, what is the difference between using the same decorator with and without parentheses?
For example:
Without parentheses:
@some_decorator
def some_method():
pass
With parentheses:
@some_decorator()
def some_method():
pass