Skip to content

Commit

Permalink
Tidy imports
Browse files Browse the repository at this point in the history
  • Loading branch information
eachanjohnson committed Mar 19, 2024
1 parent 1dc4d0b commit b375d5a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions crispio/cli.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
"""Command-line interface for crispio."""

from typing import (Callable, Dict, Iterable,
Mapping, Optional, Tuple, Union)
from typing import (Callable, Dict, Tuple, Union)

from argparse import Namespace, FileType
from dataclasses import replace
from io import TextIOWrapper
import os
import sys

from bioino import FastaCollection, FastaSequence, GffFile, GffLine
from bioino import FastaCollection, FastaSequence, GffFile
from carabiner import print_err
from carabiner.cliutils import CLIApp, CLICommand, CLIOption, clicommand
from tqdm.auto import tqdm
from streq import Circular

from .annotate import annotate_from_gff
from .crosstalk import _get_mismatches
from .features import featurize
from .map import GuideLibrary
Expand Down

0 comments on commit b375d5a

Please sign in to comment.