From d7c28f624c5d388bd5beec6ce6ce823ba037bdd1 Mon Sep 17 00:00:00 2001 From: Daniel Gaspar Date: Mon, 30 Nov 2020 11:48:56 +0000 Subject: [PATCH] fix dataclass --- superset/migrations/shared/security_converge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/migrations/shared/security_converge.py b/superset/migrations/shared/security_converge.py index e5d3371d4926c..973952653ca13 100644 --- a/superset/migrations/shared/security_converge.py +++ b/superset/migrations/shared/security_converge.py @@ -37,8 +37,8 @@ @dataclass(frozen=True) class Pvm: - permission: str view: str + permission: str PvmMigrationMapType = Dict[Pvm, Tuple[Pvm, ...]]