Skip to content

Commit

Permalink
Replace FilerByModule and FilterByModuleName with FilterMainScript
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Nov 1, 2023
1 parent 82b3175 commit 8525775
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions nextline/spawned/plugin/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from .compose import CallableComposer
from .concurrency import TaskAndThreadKeeper, TaskOrThreadToTraceMapper
from .filter import FilerByModule, FilterByModuleName, FilterLambda
from .filter import FilerByModule, FilterByModuleName, FilterLambda, FilterMainScript
from .global_ import GlobalTraceFunc, TraceFuncCreator
from .local_ import LocalTraceFunc, TraceCallHandler
from .pdb_ import PdbInstanceFactory, Prompt
Expand All @@ -22,9 +22,10 @@ def register(hook: PluginManager) -> None:
hook.register(LocalTraceFunc)
hook.register(TaskOrThreadToTraceMapper)
hook.register(TaskAndThreadKeeper)
hook.register(FilerByModule)
# hook.register(FilerByModule)
hook.register(FilterLambda)
hook.register(FilterByModuleName)
# hook.register(FilterByModuleName)
hook.register(FilterMainScript)
hook.register(GlobalTraceFunc)
hook.register(TraceFuncCreator)
hook.register(CallableComposer)

0 comments on commit 8525775

Please sign in to comment.