Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
ref: ${{ github.event.repository.default_branch }}

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
7 changes: 3 additions & 4 deletions src/designer_dna/_oligos.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from array import array
from typing import Any

def m_reverse(sequence: array[int]) -> Any:
def m_reverse(sequence: array[int]) -> None:
"""Reverse a nucleotide sequence.

Args:
Expand Down Expand Up @@ -58,7 +57,7 @@ def reverse(sequence: str) -> str:

"""

def m_complement(sequence: array[int], dna: bool = ...) -> Any:
def m_complement(sequence: array[int], dna: bool = ...) -> None:
"""Complement a nucleotide sequence.

Args:
Expand Down Expand Up @@ -88,7 +87,7 @@ def complement(sequence: str, dna: bool = ...) -> str:

"""

def m_reverse_complement(sequence: array[int], dna: bool = ...) -> Any:
def m_reverse_complement(sequence: array[int], dna: bool = ...) -> None:
"""Reverse complement a nucleotide sequence.

Args:
Expand Down
Loading