We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c05dd2 commit d342218Copy full SHA for d342218
src/reactpy/_html.py
@@ -301,9 +301,9 @@ def __getattr__(self, value: str) -> VdomDictConstructor:
301
302
return self.__cache__[value]
303
304
- # HTML elements, written out here for auto-complete purposes
305
- # The actual elements are created dynamically in the __getattr__ method.
306
- # Elements other than these can still be created.
+ # Standard HTML elements are written below for auto-complete purposes
+ # The actual elements are created dynamically when __getattr__ is called.
+ # Elements other than those type-hinted below can still be created.
307
a: VdomDictConstructor
308
abbr: VdomDictConstructor
309
address: VdomDictConstructor
0 commit comments