Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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