Skip to content

Commit

Permalink
Fix data type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaz001 committed Apr 30, 2023
1 parent 71af746 commit a2d533a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hftbacktest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
'correct'
)

__version__ = '1.5.3'
__version__ = '1.5.4'


# JIT'ed latency models
Expand Down
2 changes: 1 addition & 1 deletion hftbacktest/models/latencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class IntpOrderLatency:

entry_rn: int64
resp_rn: int64
data: float64[:]
data: float64[:, :]

def __init__(self, data):
self.entry_rn = 0
Expand Down

0 comments on commit a2d533a

Please sign in to comment.