Closed LaurentAjdnik closed 3 years ago
Very first PR: Let me know if something's wrong with the contribution method.
Uses cast (doc) to fix #26, except for:
cast
qrand\platforms\qsharp\job.py:99: error: Returning Any from function declared to return "List[str]"
qrand\platforms\qsharp\job.py:103: error: Returning Any from function declared to return "List[str]"
These lines contain calls to methods that return Any (line 99) and Dict (line 103). Are we sure we want to and can cast these into List[str]?
Any
Dict
List[str]
Very first PR: Let me know if something's wrong with the contribution method.
Uses
cast
(doc) to fix #26, except for:qrand\platforms\qsharp\job.py:99: error: Returning Any from function declared to return "List[str]"
qrand\platforms\qsharp\job.py:103: error: Returning Any from function declared to return "List[str]"
These lines contain calls to methods that return
Any
(line 99) andDict
(line 103). Are we sure we want to and can cast these intoList[str]
?