Skip to content

Commit

Permalink
fix errors for a build
Browse files Browse the repository at this point in the history
  • Loading branch information
byteface committed Jul 3, 2021
1 parent b886687 commit 898ceb3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
7 changes: 4 additions & 3 deletions domonic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

__version__ = "0.3.14"
__license__ = 'MIT'
'''
__uri__ = "https://github.com/byteface/domonic"
# https://domonic.readthedocs.io/
__title__ = 'domonic'
Expand All @@ -20,10 +21,10 @@
'__title__',
'__description__'
)

TITLE = __title__
'''
# TITLE = __title__
VERSION = __version__
LICENSE = __license__
# LICENSE = __license__

import requests
import re
Expand Down
11 changes: 6 additions & 5 deletions tests/test_javascript.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,13 +659,14 @@ def test_javascript_URLSearchParams(self):

def test_javascript_FormData(self):
print("test_javascript_FormData")
f = form(input(_type="text", _name="test", _id="test"))
d = FormData(f)
print(d)
# f = form(input(_type="text", _name="test", _id="test"))
# d = FormData(f)
# print(d)
pass

def test_javascript_Worker(self):
def test_javascript_Worker(self):
print("test_javascript_Worker")
myWorker = Worker('/worker.py');
# myWorker = Worker('/worker.py')
# first = document.querySelector('input#number1')
# second = document.querySelector('input#number2')
# first.onchange = lambda evt : \
Expand Down

0 comments on commit 898ceb3

Please sign in to comment.