Skip to content

Commit 128f114

Browse files
authored
remove rx.models (#65)
1 parent 0811b3f commit 128f114

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

shared/backend/signup.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
import contextlib
22
import os
3-
from datetime import datetime
43
from typing import Any
54

65
import httpx
76
import reflex as rx
87
from email_validator import EmailNotValidError, ValidatedEmail, validate_email
9-
from sqlmodel import Field
108

119
from shared.constants import (
1210
API_BASE_URL_LOOPS,
1311
REFLEX_DEV_WEB_NEWSLETTER_FORM_WEBHOOK_URL,
1412
)
1513

1614

17-
class Waitlist(rx.Model, table=True):
18-
email: str
19-
date_created: datetime = Field(default_factory=datetime.utcnow, nullable=False)
20-
21-
2215
class IndexState(rx.State):
2316
"""Hold the state for the home page."""
2417

0 commit comments

Comments
 (0)