Skip to content

Commit 42e3a8b

Browse files
authored
Add windows support (#290)
1 parent 8be411b commit 42e3a8b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pynecone/components/component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def render(self) -> str:
339339
tag.add_props(**self.event_triggers, key=self.key, sx=self.style).set(
340340
contents=utils.join(
341341
[str(tag.contents)] + [child.render() for child in self.children]
342-
),
342+
).strip(),
343343
)
344344
)
345345

pynecone/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
# The gitignore file.
127127
GITIGNORE_FILE = ".gitignore"
128128
# Files to gitignore.
129-
DEFAULT_GITIGNORE = {".web", DB_NAME}
129+
DEFAULT_GITIGNORE = {WEB_DIR, DB_NAME}
130130
# The name of the pynecone config module.
131131
CONFIG_MODULE = "pcconfig"
132132
# The python config file.

0 commit comments

Comments
 (0)