We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9c040 commit 5f7b9c6Copy full SHA for 5f7b9c6
utbot-python/src/main/kotlin/org/utbot/python/providers/GenericModelProvider.kt
@@ -71,7 +71,7 @@ object GenericModelProvider: ModelProvider {
71
72
Regex("builtins.dict\\[(.*), *(.*)]") to { matchResult -> parseDict(matchResult) },
73
Regex("[Dd]ict\\[(.*), *(.*)]") to { matchResult -> parseDict(matchResult) },
74
- Regex("typing.Dict\\[(.*)]") to { matchResult -> parseDict(matchResult) },
+ Regex("typing.Dict\\[(.*), *(.*)]") to { matchResult -> parseDict(matchResult) },
75
76
Regex("builtins.set\\[(.*)]") to { matchResult -> parseSet(matchResult) },
77
Regex("[Ss]et\\[(.*)]") to { matchResult -> parseSet(matchResult) },
0 commit comments