Skip to content

Commit 435fcbc

Browse files
committed
Apply hatch fmt
1 parent 5d7dbdd commit 435fcbc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: src/reactpy/types.py

+1
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,7 @@ class JsonImportSource(TypedDict):
897897

898898
class JavaScript(str):
899899
"""A simple way of marking JavaScript code to be executed client-side"""
900+
900901
pass
901902

902903

Diff for: tests/test_utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,12 @@ def test_string_to_reactpy(case):
196196
},
197197
# 9: Includes `jsExecutables` attribue
198198
{
199-
"source": '''<button onclick="this.innerText = 'CLICKED'">Click Me</button>''',
199+
"source": """<button onclick="this.innerText = 'CLICKED'">Click Me</button>""",
200200
"model": {
201201
"tagName": "button",
202202
"jsExecutables": {"onclick": "this.innerText = 'CLICKED'"},
203203
"children": ["Click Me"],
204-
}
204+
},
205205
},
206206
],
207207
)

0 commit comments

Comments
 (0)