Skip to content

Commit

Permalink
Fix: minor typo and add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
czgu committed Nov 2, 2024
1 parent 5363bee commit 0939c18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions querybook/server/lib/form/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from multiprocessing.dummy import Array
import re
from abc import ABCMeta, abstractmethod
from typing import Dict, Union
from typing import Dict, Union, List
from enum import Enum


Expand Down Expand Up @@ -41,7 +40,8 @@ def __init__(
# These two only applies to string field
regex: str = None,
hidden: bool = False,
options: Array = None,
# Only applies to Select field type
options: List[str] = None,
):
"""Initialize the form field
Keyword Arguments:
Expand Down

0 comments on commit 0939c18

Please sign in to comment.