Skip to content

Commit

Permalink
inorporating reviewer feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
flexatone committed Jul 9, 2024
1 parent 51b91ce commit 1f98cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion papers/christopher_ariza/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def process5(v: TFrameDateInts, q: TSeriesYMBool) -> TSeriesDFloat:
return cast(TSeriesDFloat, (v.via_T * s).mean(axis=1))
```

As before, ``mypy`` can be used to validate annotated interfaces. Below, a ``Frame`` without the expected column value types is passed, causing ``mypy`` to error (shown as comments, below).
These more complex annotated interfaces can also be validated with ``mypy``. Below, a ``Frame`` without the expected column value types is passed, causing ``mypy`` to error (shown as comments, below).

```python
TFrameDateIntFloat = sf.Frame[sf.IndexDate, sf.Index[np.str_], np.int64, np.float64]
Expand Down

0 comments on commit 1f98cd5

Please sign in to comment.