1111# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212# See the License for the specific language governing permissions and
1313# limitations under the License.
14- from typing import List , Optional
14+ from typing import Optional , Tuple
1515
1616from robot .api import logger
1717
@@ -27,7 +27,7 @@ def check_if_exists_in_database(
2727 sansTran : bool = False ,
2828 msg : Optional [str ] = None ,
2929 alias : Optional [str ] = None ,
30- parameters : Optional [List ] = None ,
30+ parameters : Optional [Tuple ] = None ,
3131 ):
3232 """
3333 Check if any row would be returned by given the input ``selectStatement``. If there are no results, then this will
@@ -64,7 +64,7 @@ def check_if_not_exists_in_database(
6464 sansTran : bool = False ,
6565 msg : Optional [str ] = None ,
6666 alias : Optional [str ] = None ,
67- parameters : Optional [List ] = None ,
67+ parameters : Optional [Tuple ] = None ,
6868 ):
6969 """
7070 This is the negation of `check_if_exists_in_database`.
@@ -103,7 +103,7 @@ def row_count_is_0(
103103 sansTran : bool = False ,
104104 msg : Optional [str ] = None ,
105105 alias : Optional [str ] = None ,
106- parameters : Optional [List ] = None ,
106+ parameters : Optional [Tuple ] = None ,
107107 ):
108108 """
109109 Check if any rows are returned from the submitted ``selectStatement``. If there are, then this will throw an
@@ -140,7 +140,7 @@ def row_count_is_equal_to_x(
140140 sansTran : bool = False ,
141141 msg : Optional [str ] = None ,
142142 alias : Optional [str ] = None ,
143- parameters : Optional [List ] = None ,
143+ parameters : Optional [Tuple ] = None ,
144144 ):
145145 """
146146 Check if the number of rows returned from ``selectStatement`` is equal to the value submitted. If not, then this
@@ -178,7 +178,7 @@ def row_count_is_greater_than_x(
178178 sansTran : bool = False ,
179179 msg : Optional [str ] = None ,
180180 alias : Optional [str ] = None ,
181- parameters : Optional [List ] = None ,
181+ parameters : Optional [Tuple ] = None ,
182182 ):
183183 """
184184 Check if the number of rows returned from ``selectStatement`` is greater than the value submitted. If not, then
@@ -216,7 +216,7 @@ def row_count_is_less_than_x(
216216 sansTran : bool = False ,
217217 msg : Optional [str ] = None ,
218218 alias : Optional [str ] = None ,
219- parameters : Optional [List ] = None ,
219+ parameters : Optional [Tuple ] = None ,
220220 ):
221221 """
222222 Check if the number of rows returned from ``selectStatement`` is less than the value submitted. If not, then this
0 commit comments