Skip to content

Commit 3d555da

Browse files
committed
Fix lint error
1 parent 146ceef commit 3d555da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reactpy/core/_life_cycle_hook.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async def __call__(self, stop: Event) -> None: ...
2222
logger = logging.getLogger(__name__)
2323

2424

25-
class __HookStack(Singleton): # pragma: no cover
25+
class _HookStack(Singleton): # pragma: no cover
2626
"""A singleton object which manages the current component tree's hooks.
2727
Life cycle hooks can be stored in a thread local or context variable depending
2828
on the platform."""
@@ -53,7 +53,7 @@ def current_hook(self) -> LifeCycleHook:
5353
return hook_stack[-1]
5454

5555

56-
HOOK_STACK = __HookStack()
56+
HOOK_STACK = _HookStack()
5757

5858

5959
class LifeCycleHook:

0 commit comments

Comments
 (0)