fix typing problem
This commit is contained in:
parent
01fed4758d
commit
e5cefcea80
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue