我有以下语法在Python3.6中应该是正确的
@Around("notAspect() && customClicked() && args(custom)")
public Object selectedClicked(final ProceedingJoinPoint joinPoint, CustomType custom) throws Throwable {
Log.d(TAG, "Found a clicked method " + custom);
Object result = joinPoint.proceed();
return result;
}
" f"在new_key中的字符串之前,所有以下代码都以红色显示。
代码中有错误吗?我可以毫无错误地运行它吗?