mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
chore(pre-commit): Add pyupgrade and pycln hooks (#24197)
This commit is contained in:
@@ -16,7 +16,6 @@
|
||||
# under the License.
|
||||
import random
|
||||
import string
|
||||
from typing import List
|
||||
|
||||
import sqlalchemy.sql.sqltypes
|
||||
|
||||
@@ -36,7 +35,7 @@ COLUMN_TYPES = [
|
||||
|
||||
def load_big_data() -> None:
|
||||
print("Creating table `wide_table` with 100 columns")
|
||||
columns: List[ColumnInfo] = []
|
||||
columns: list[ColumnInfo] = []
|
||||
for i in range(100):
|
||||
column: ColumnInfo = {
|
||||
"name": f"col{i}",
|
||||
|
||||
Reference in New Issue
Block a user