fix typing problem

This commit is contained in:
Elizabeth Esswein 2022-12-19 14:01:52 -05:00
parent 01fed4758d
commit e5cefcea80
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import json
import os import os
import time import time
from typing import Any from typing import Any
from typing import Dict
import pytest import pytest
from flask.app import Flask from flask.app import Flask
@ -2541,7 +2542,8 @@ class TestProcessApi(BaseTest):
headers=self.logged_in_headers(with_super_admin_user), headers=self.logged_in_headers(with_super_admin_user),
) )
data = { # This is exactly the same the test above, but some reason I to a totally irrelevant type.
data: Dict = {
"correlation_properties": [], "correlation_properties": [],
"expression": None, "expression": None,
"external": True, "external": True,