Skip to content

Commit 594b0c9

Browse files
committed
remove examples
1 parent 850fa7c commit 594b0c9

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/compas/data/coercion.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@ def coerce_sequence_of_tuple(sequence):
2020
with each iterable item converted to a tuple,
2121
and non-iterable items wrapped in a tuple.
2222
23-
Examples
24-
--------
25-
>>> items = coerce_sequence_of_tuple(["a", 1, (None,), [2.0, 3.0]])
26-
>>> is_sequence_of_tuple(items)
27-
True
28-
2923
"""
3024
items = []
3125
for item in sequence:
@@ -53,12 +47,6 @@ def coerce_sequence_of_list(sequence):
5347
with each iterable item converted to a list,
5448
and non-iterable items wrapped in a list.
5549
56-
Examples
57-
--------
58-
>>> items = coerce_sequence_of_list(["a", 1, (None,), [2.0, 3.0]])
59-
>>> is_sequence_of_list(items)
60-
True
61-
6250
"""
6351
items = []
6452
for item in sequence:

0 commit comments

Comments
 (0)