Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
resources
/
intentionDescriptions
/
PyConvertStaticMethodToFunctionIntention
/
after.py.template
blob: f393b5ef1e73a305fa00cb073fe950edf09103b0 [
file
] [
log
] [
blame
]
class
MyClass
(
object
):
"""
My class to show intention.
"""
def
__init__
(
self
):
self
.
a
=
1
def
my_static_method
():
import
code
import
time
time
.
sleep
(
100
)
print
code