Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
intentions
/
beforeConvertStaticMethodToFunctionUsage.py
blob: 65b02027cda467db54b024973f9c20b1098abc78 [
file
] [
log
] [
blame
]
class
MyClass
(
object
):
"""
My class to show intention.
"""
def
__init__
(
self
):
self
.
a
=
1
@staticmethod
def
my_
<
caret
>
static_method
():
import
code
import
time
time
.
sleep
(
100
)
print
code
MyClass
().
my_static_method
()