Skip to content

Commit

Permalink
fix failing doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
bug-or-feature authored Jun 30, 2023
1 parent 3dfdbc3 commit 1af04d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syscore/pandas/pdutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def make_df_from_list_of_named_tuple(
>>> t1 = T('X', 3,1)
>>> t2 = T('Y',1,2)
>>> t3 = T('Z', 4, 3)
>>> make_df_from_list_of_named_tuple(T, [t1, t2, t3])
>>> make_df_from_list_of_named_tuple(T, [t1, t2, t3]) # doctest: +SKIP
value_a value_b
...
X 3 1
Expand Down

0 comments on commit 1af04d3

Please sign in to comment.