Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyMethodMayBeStaticInspection
/
propertyWithAlias.py
blob: b2dfb22ef940b3fff39342fdb6b530fabf48497d [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
from
abc
import
abstractproperty
as
alias
,
ABCMeta
2
3
class
MyAbsBase
(
object
):
4
__metaclass__
=
ABCMeta
5
6
@alias
7
def
count
(
self
):
# <- false positive here
8
return