mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
fix(babel): broken babel extract (#9790)
* fix(babel): broken babel extract * remove unnecessary f strings
This commit is contained in:
committed by
GitHub
parent
34df11a61c
commit
ea9b7f2dc4
@@ -127,10 +127,11 @@ class TableNotFoundValidationError(ValidationError):
|
||||
def __init__(self, table_name: str) -> None:
|
||||
super().__init__(
|
||||
_(
|
||||
f"Table [{table_name}] could not be found, "
|
||||
"Table [%(table_name)s] could not be found, "
|
||||
"please double check your "
|
||||
"database connection, schema, and "
|
||||
f"table name"
|
||||
"table name",
|
||||
table_name=table_name,
|
||||
),
|
||||
field_names=["table_name"],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user