EBADF

Results 35 issues of EBADF

This PR adds a demonstration of Changelog created using [documatic](https://www.documatic.com/): A changelog, based on semantic versioning, is automatically generated based on git commits and stored in the root directory as...

so im using django 3.1 and i defined a model with a foreign key relation like this: ```sh class Account(TimeStampedModel): corporate = models.ForeignKey('CompanyDetail',on_delete=models.CASCADE,related_name= 'corporate_accounts') balance = models.DecimalField(max_digits=20, decimal_places=2) ``` this...

- [x] adds a feature that allows the use of conditional props. - [x] Add test cases fixes #255

**Describe the bug** If the app fails before it gets to run, re-running the application throws the error: ``` Traceback (most recent call last): File "C:\Users\Clearspace User\Documents\Programming\openSource\pynecone\scripts\run.py", line 4, in...

bug

This PR adds a feature to upload multiple files. fixes #628 With this, files can be uploaded in the following manner: 1. Single Upload ```python import pynecone as pc class...

This PR should have uploads working with `yield`. The code below should work: ```python import reflex as rx class State(rx.State): img : list[str] = [] val : str = "new"...

This code shouldnt be allowed but it compiles into a js code that doesnt fail either: ```python class State(rx.State): d: list[int] = [1, 2, 3] @rx.var def elements(self) -> dict[str,...

we should be able to support doing something like this: ```python class State(rx.State): @rx.var def values()-> List[str]: # or replace with Tuple return [1, 2, 3, 4] def index(): a,...

This PR is a WIP aimed at performing uploads via websockets(initially done through REST)