Skip to content

Commit

Permalink
dont mutate args in base external call handler
Browse files Browse the repository at this point in the history
  • Loading branch information
smacke committed Mar 10, 2024
1 parent 23c928a commit 7b740ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ 'macos-latest', 'ubuntu-latest', 'windows-latest' ]
python-version: [ '3.8.x', '3.9.x', '3.10.x', '3.11.x' ]
python-version: [ '3.8.x', '3.9.x', '3.10.x', '3.11.x', '3.12.x' ]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion core/ipyflow/tracing/external_calls/base_handlers.py
Expand Up @@ -154,7 +154,8 @@ def process_return(self, return_value: Any) -> None:
self.return_value = return_value

def _handle_impl(self) -> None:
Timestamp.update_usage_info(self.arg_syms)
# TODO: why was this here
# Timestamp.update_usage_info(self.arg_syms)
result = self.handle()
if result is None or self.call_node is None:
return
Expand Down

0 comments on commit 7b740ad

Please sign in to comment.