Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyMethodMayBeStaticInspection
/
propertyWithAlias.py
blob: b2dfb22ef940b3fff39342fdb6b530fabf48497d [
file
] [
log
] [
blame
]
from
abc
import
abstractproperty
as
alias
,
ABCMeta
class
MyAbsBase
(
object
):
__metaclass__
=
ABCMeta
@alias
def
count
(
self
):
# <- false positive here
return