Skip to content

Commit 111df49

Browse files
author
Bryan Sieber
committed
rm print
1 parent d1aebc0 commit 111df49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def get_action_context_by_key(key):
1515
def get_action_context_from_module(action_module):
1616
context_map = {}
1717
for _, module in getmembers(action_module, ismodule):
18-
print(module)
18+
# print(module)
1919
methods = getmembers(module, isfunction)
2020
for method_name, method in methods:
2121
assert (

0 commit comments

Comments
 (0)