I recognize from c# that you could do
(int)(randomVariable + 1 + anythingElse)
and the IDE would understand that the named variable/result is an integer.
Now in Python I want to let my IDE know, that in the list ceDocs which I am sending as a parameter will be objects of the class Doc so I can use autocomplete and proper coloring instead of “any” everywhere.
JavaScript
x
6
1
def createDocuments(ceDocs):
2
for doc in ceDocs:
3
doc.name = doc.path # example action
4
5
createDocuments(getFromPath(path))
6
Is there a way to do this in python?
Please correct me if this makes no sense… :)
Advertisement
Answer
Use type hints with the typing
module.
JavaScript
1
9
1
from typing import List
2
3
class Doc:
4
# ...
5
6
def createDocuments(ceDocs: List[Doc]):
7
for doc in ceDocs:
8
doc.name = doc.path # example action
9