Skip to content

Commit

Permalink
lint: Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
elviskahoro committed Sep 30, 2024
1 parent 0876937 commit aa63c4e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pcweb/components/docpage/navbar/inkeep.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
"""UI and logic inkeep chat component."""

from typing import Set
from typing import List, Set

import reflex as rx
from reflex.event import EventHandler
from reflex.utils.imports import ImportVar
from reflex.vars import Var
from typing import List


class Search(rx.Component):
tag = "SearchBar"

special_props: List[Var] = [
Var.create("{...searchBarProps}", _var_is_string=False)
Var.create(
"{...searchBarProps}",
_var_is_string=False,
),
]

is_open: Var[bool] = False
Expand Down

0 comments on commit aa63c4e

Please sign in to comment.