Skip to content

Commit

Permalink
fix: fix a few extra leading spaces in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
nh13 committed Aug 4, 2023
1 parent a2eb1b7 commit b5e2e1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fgpyo/fasta/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from typing import Dict
from typing import Optional

""" Stubs for pysam imports """
"""Stubs for pysam imports """
if TYPE_CHECKING:

def samtools_dict(*args: Any) -> None:
Expand Down Expand Up @@ -152,7 +152,7 @@ def __init__(
self.__contig_builders: Dict[str, ContigBuilder] = {}

def __getitem__(self, key: str) -> ContigBuilder:
""" Access instance of ContigBuilder by name """
"""Access instance of ContigBuilder by name """
return self.__contig_builders[key]

def add(
Expand Down
2 changes: 1 addition & 1 deletion fgpyo/sam/tests/test_clipping.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


def r(start: Optional[int], cigar: Optional[str], strand: Optional[str] = "+") -> AlignedSegment:
""" "Constructs a read for testing."""
"""Constructs a read for testing."""
builder = SamBuilder()
if start:
r1, r2 = builder.add_pair(chrom="chr1", start1=start, cigar1=cigar, strand1=strand)
Expand Down

0 comments on commit b5e2e1e

Please sign in to comment.