Code Inspections with quick fixes for python annotations
- Add type of parameter of function
# before
def fun(value):
...
# after quickfix
def fun(value: int):
...- Add type to variable
# before
x = 1
# after quickfix
x: int = 1#Install Create Gradle project in IDEA (Please select in frameworks Java, Kotlin/JVM, and Intellij Platform Plugin)
Download the repository
Clean the project.
$ gradle cleanRun the Gradle fatJar task.
$ gradle fatJarThe Jar is create under the $project/build/libs/ folder.
Open PyCharm Community
Go to Preferences - Plugin
Click on the gear
Please select "Install Plugin from disk..."
Select the generated .jar file