Skip to content

Commit d490651

Browse files
committed
fixed bug with cancel button and in ArgInfoCollector
1 parent 6ed0b4f commit d490651

14 files changed

Lines changed: 43 additions & 44 deletions

File tree

utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ object PythonDialogProcessor {
124124

125125
val testCaseGenerator = PythonTestCaseGenerator.apply {
126126
init(
127-
testSourceRoot,
128127
model.directoriesForSysPath,
129128
model.moduleToImport,
130129
pythonPath,
File renamed without changes.

utbot-python/types/find_and_check_types.py renamed to utbot-python/our_scripts/find_and_check_types.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import types
1+
import our_scripts
22
from typing import Optional
33

44
import astor.code_gen
@@ -15,7 +15,7 @@ def find_all_classes_in_file(filename: str, prefix: str = '') -> list[str]:
1515
]
1616

1717

18-
def find_module_types(module_name: types.ModuleType) -> list[str]:
18+
def find_module_types(module_name: our_scripts.ModuleType) -> list[str]:
1919
def eval_name(name, module_name):
2020
return name if 'builtin' in module_name.__name__ else f'{module_name.__name__}.{name}'
2121

@@ -29,7 +29,7 @@ def eval_name(name, module_name):
2929
def find_import_types():
3030
return [
3131
(name, val) for name, val in globals().items()
32-
if isinstance(val, types.ModuleType)
32+
if isinstance(val, our_scripts.ModuleType)
3333
]
3434

3535

File renamed without changes.
File renamed without changes.

utbot-python/types/mypy_reports/get_answer_report.txt renamed to utbot-python/our_scripts/mypy_reports/get_answer_report.txt

File renamed without changes.

utbot-python/types/mypy_reports/parse_business_report.txt renamed to utbot-python/our_scripts/mypy_reports/parse_business_report.txt

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)