From d425ede401a093d7cfc8cc01e9c0ed68b45debb0 Mon Sep 17 00:00:00 2001 From: benedikt-bartscher <31854409+benedikt-bartscher@users.noreply.github.com> Date: Wed, 26 Jun 2024 22:19:55 +0200 Subject: [PATCH] fix formatting (#3574) --- reflex/components/core/clipboard.py | 1 + reflex/components/core/clipboard.pyi | 1 + 2 files changed, 2 insertions(+) diff --git a/reflex/components/core/clipboard.py b/reflex/components/core/clipboard.py index 3ffc4e77a..9b0edcc29 100644 --- a/reflex/components/core/clipboard.py +++ b/reflex/components/core/clipboard.py @@ -1,4 +1,5 @@ """Global on_paste handling for Reflex app.""" + from __future__ import annotations from typing import Dict, List, Union diff --git a/reflex/components/core/clipboard.pyi b/reflex/components/core/clipboard.pyi index 6cc7163e2..60a6d3932 100644 --- a/reflex/components/core/clipboard.pyi +++ b/reflex/components/core/clipboard.pyi @@ -99,6 +99,7 @@ class Clipboard(Fragment): The Clipboard Component. """ ... + def add_imports(self) -> dict[str, ImportVar]: ... def add_hooks(self) -> list[str]: ...