bioguider 0.2.23__py3-none-any.whl → 0.2.24__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bioguider might be problematic. Click here for more details.
- bioguider/agents/consistency_query_step.py +3 -0
- {bioguider-0.2.23.dist-info → bioguider-0.2.24.dist-info}/METADATA +1 -1
- {bioguider-0.2.23.dist-info → bioguider-0.2.24.dist-info}/RECORD +5 -5
- {bioguider-0.2.23.dist-info → bioguider-0.2.24.dist-info}/LICENSE +0 -0
- {bioguider-0.2.23.dist-info → bioguider-0.2.24.dist-info}/WHEEL +0 -0
|
@@ -45,14 +45,17 @@ class ConsistencyQueryStep(CommonStep):
|
|
|
45
45
|
else:
|
|
46
46
|
if file_path is not None and parent is not None:
|
|
47
47
|
rows = self.code_structure_db.select_by_name_and_parent_and_path(name, parent, file_path)
|
|
48
|
+
rows = rows if rows is None else [rows]
|
|
48
49
|
if rows is None or len(rows) == 0:
|
|
49
50
|
rows = self.code_structure_db.select_by_name_and_path(name, file_path)
|
|
51
|
+
rows = rows if rows is None else [rows]
|
|
50
52
|
if rows is None or len(rows) == 0:
|
|
51
53
|
rows = self.code_structure_db.select_by_name_and_parent(name, parent)
|
|
52
54
|
if rows is None or len(rows) == 0:
|
|
53
55
|
rows = self.code_structure_db.select_by_name(name)
|
|
54
56
|
elif file_path is not None:
|
|
55
57
|
rows = self.code_structure_db.select_by_name_and_path(name, file_path)
|
|
58
|
+
rows = rows if rows is None else [rows]
|
|
56
59
|
if rows is None or len(rows) == 0:
|
|
57
60
|
rows = self.code_structure_db.select_by_name(name)
|
|
58
61
|
elif parent is not None:
|
|
@@ -16,7 +16,7 @@ bioguider/agents/consistency_collection_step.py,sha256=evgb0W3PD5pXfViuP_0T5LqLn
|
|
|
16
16
|
bioguider/agents/consistency_evaluation_task.py,sha256=_nYPEs3xhj1jraQWMRML_Y6vZJD_zydY4BstQYXmXJk,1908
|
|
17
17
|
bioguider/agents/consistency_evaluation_task_utils.py,sha256=8PC4KS14ek9NJy3bLuhZNmpOUKFx3_06nKXzuTWb0tE,444
|
|
18
18
|
bioguider/agents/consistency_observe_step.py,sha256=0FEtNpkaGcuL30wb2d43uTlSyHJ9Pxttn9r3NzPD0oo,4409
|
|
19
|
-
bioguider/agents/consistency_query_step.py,sha256=
|
|
19
|
+
bioguider/agents/consistency_query_step.py,sha256=SRkw9UiLAhMnbPgexffHsAznrdLAQvIP4KD7S7N-P14,3858
|
|
20
20
|
bioguider/agents/dockergeneration_execute_step.py,sha256=F92jDlkc6KjAvTkX7q1FsCYP8J15SCaNgmwh3YPqfDo,6500
|
|
21
21
|
bioguider/agents/dockergeneration_observe_step.py,sha256=Bo5Td0fzMYLbLki0FvwamzqRFOy4eu3AvIUa8oFApE4,6131
|
|
22
22
|
bioguider/agents/dockergeneration_plan_step.py,sha256=SB8tQM9PkIKsD2o1DFD7bedcxz6r6hSy8n_EVK60Fz0,7235
|
|
@@ -74,7 +74,7 @@ bioguider/utils/pyphen_utils.py,sha256=cdZc3qphkvMDeL5NiZ8Xou13M_uVNP7ifJ-FwxO-0
|
|
|
74
74
|
bioguider/utils/python_file_handler.py,sha256=BERiE2RHxpu3gAzv26jr8ZQetkrtnMZOv9SjpQ7WIdg,2650
|
|
75
75
|
bioguider/utils/r_file_handler.py,sha256=8HpFaYKP8N1nItwr9tOx49m99pcLSt8EUtTNTJ7xNoE,19564
|
|
76
76
|
bioguider/utils/utils.py,sha256=1N7Wv_i9spTBQ_FbZnlxsjC8mszbBzaegrmvuKGUISg,3531
|
|
77
|
-
bioguider-0.2.
|
|
78
|
-
bioguider-0.2.
|
|
79
|
-
bioguider-0.2.
|
|
80
|
-
bioguider-0.2.
|
|
77
|
+
bioguider-0.2.24.dist-info/LICENSE,sha256=qzkvZcKwwA5DuSuhXMOm2LcO6BdEr4V7jwFZVL2-jL4,1065
|
|
78
|
+
bioguider-0.2.24.dist-info/METADATA,sha256=ExmR7sflPHuNCSyjnvl6B-hUpK9AFFU5zEaK8zqQdUY,1868
|
|
79
|
+
bioguider-0.2.24.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
80
|
+
bioguider-0.2.24.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|