Skip to content

Commit

Permalink
Update et_replay reference to latest module path.
Browse files Browse the repository at this point in the history
Summary:
For changes originating in facebookresearch/param#133.

ET replay package modules are getting flatter and simpler to import. Updating references in HTA to be the same.

Differential Revision: D59748145
  • Loading branch information
sanrise authored and facebook-github-bot committed Jul 15, 2024
1 parent b9ba3f0 commit 28684a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hta/common/execution_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@

try:
# Import path in github due to submodule
from et_replay.lib.execution_trace import ExecutionTrace
from et_replay.execution_trace import ExecutionTrace
except ImportError:
try:
# Import path in fbcode
from param_bench.et_replay.lib.execution_trace import ExecutionTrace
from param_bench.et_replay.execution_trace import ExecutionTrace
except ImportError:
IMPORT_EXECUTION_TRACE_SUCCESSFULLY = False
pass
Expand Down

0 comments on commit 28684a8

Please sign in to comment.