Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyCallingNonCallableInspection
/
staticMeth.py
blob: d9ee2699577b114d4b246636a96cb51d850cfb25 [
file
] [
log
] [
blame
]
class
SM
(
object
):
def
my_method
():
pass
my_method
=
staticmethod
(
my_method
)
def
q
(
self
):
self
.
my_method
()