Skip to content

Commit 1cfd8a4

Browse files
committed
Updating tests in doctstrings of translate.py.
Removing potentially confusing examples in the docstrings of `translate.py`.
1 parent 9084eba commit 1cfd8a4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

translate.py

-6
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ def get_reverse(sequence):
7474
--------
7575
>>> get_reverse('AUGC')
7676
'CGUA'
77-
>>> get_reverse('ATGC')
78-
'CGTA'
7977
"""
8078
pass
8179

@@ -90,8 +88,6 @@ def get_complement(sequence):
9088
--------
9189
>>> get_complement('AUGC')
9290
'UACG'
93-
>>> get_complement('ATGC')
94-
'TACG'
9591
"""
9692
pass
9793

@@ -107,8 +103,6 @@ def reverse_and_complement(sequence):
107103
--------
108104
>>> reverse_and_complement('AUGC')
109105
'GCAU'
110-
>>> reverse_and_complement('ATGC')
111-
'GCAT'
112106
"""
113107
pass
114108

0 commit comments

Comments
 (0)