Skip to content

Commit 5f7b9c6

Browse files
committed
fixed bug in GenericModelProvider
1 parent 6b9c040 commit 5f7b9c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utbot-python/src/main/kotlin/org/utbot/python/providers/GenericModelProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ object GenericModelProvider: ModelProvider {
7171

7272
Regex("builtins.dict\\[(.*), *(.*)]") to { matchResult -> parseDict(matchResult) },
7373
Regex("[Dd]ict\\[(.*), *(.*)]") to { matchResult -> parseDict(matchResult) },
74-
Regex("typing.Dict\\[(.*)]") to { matchResult -> parseDict(matchResult) },
74+
Regex("typing.Dict\\[(.*), *(.*)]") to { matchResult -> parseDict(matchResult) },
7575

7676
Regex("builtins.set\\[(.*)]") to { matchResult -> parseSet(matchResult) },
7777
Regex("[Ss]et\\[(.*)]") to { matchResult -> parseSet(matchResult) },

0 commit comments

Comments
 (0)