Skip to content

Commit 625b2bf

Browse files
committed
misc file/comment cleanup
1 parent 00adecc commit 625b2bf

File tree

3 files changed

+2
-260
lines changed

3 files changed

+2
-260
lines changed

src/js/packages/event-to-object/src/events.ts

Lines changed: 0 additions & 257 deletions
This file was deleted.

src/reactpy/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,8 +544,8 @@ class DangerouslySetInnerHTML(TypedDict):
544544
__html: str
545545

546546

547-
# TODO: It's probably better to break this one attributes dict down into what each specific
548-
# HTML node's attributes can be, and make sure those types are resolved correctly within `HtmlConstructor`
547+
# TODO: It's probably better to break this down into what each HTML node's attributes can be,
548+
# and make sure those types are resolved correctly within `HtmlConstructor`
549549
# TODO: This could be generated by parsing from `@types/react` in the future
550550
# https://www.npmjs.com/package/@types/react?activeTab=code
551551
VdomAttributesTypeDict = TypedDict(

tests/tooling/hooks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def use_toggle(init=False):
1010
return state, lambda: set_state(lambda old: not old)
1111

1212

13-
# TODO: Remove this
1413
def use_counter(initial_value):
1514
state, set_state = use_state(initial_value)
1615
return state, lambda: set_state(lambda old: old + 1)

0 commit comments

Comments
 (0)