Skip to content

Commit

Permalink
passing build
Browse files Browse the repository at this point in the history
  • Loading branch information
KevenDuverglas committed Dec 4, 2023
1 parent ca862ee commit 2f897b7
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 17 deletions.
3 changes: 2 additions & 1 deletion cellveyor/data.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""Access and manipulate data."""

from pathlib import Path
from typing import Dict, Tuple
from typing import Dict
from typing import Tuple

import pandas

Expand Down
3 changes: 2 additions & 1 deletion cellveyor/filesystem.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""Check and access contents of the filesystem."""

from pathlib import Path
from typing import Dict, List
from typing import Dict
from typing import List

import yaml

Expand Down
8 changes: 6 additions & 2 deletions cellveyor/main.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
"""🚚 Cellveyor is a conveyor for the cells in spreadsheets."""

from pathlib import Path
from typing import Dict, List
from typing import Dict
from typing import List

import typer
from rich.console import Console
from rich.markdown import Markdown
from rich.panel import Panel

from cellveyor import data, filesystem, report, transfer
from cellveyor import data
from cellveyor import filesystem
from cellveyor import report
from cellveyor import transfer

# create a Typer object to support the command-line interface
cli = typer.Typer(no_args_is_help=True)
Expand Down
3 changes: 2 additions & 1 deletion cellveyor/report.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Create reports based on content in dataframes."""

from typing import Dict, List
from typing import Dict
from typing import List

from pandas import DataFrame

Expand Down
18 changes: 9 additions & 9 deletions cellveyor/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

from typing import Dict

from github import Auth, Github, GithubException
from rich.progress import (
BarColumn,
MofNCompleteColumn,
Progress,
TextColumn,
TimeElapsedColumn,
TimeRemainingColumn,
)
from github import Auth
from github import Github
from github import GithubException
from rich.progress import BarColumn
from rich.progress import MofNCompleteColumn
from rich.progress import Progress
from rich.progress import TextColumn
from rich.progress import TimeElapsedColumn
from rich.progress import TimeRemainingColumn

# the checkmark that appears in the progress bar diagnostic
# output when a transfer to GitHub works correctly
Expand Down
5 changes: 3 additions & 2 deletions tests/test_data.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
"""Pytest test suite for the filesystem module."""

import pytest
from pathlib import Path

import pandas as pd
import pytest

from cellveyor import data
from pathlib import Path


def test_access_dataframes() -> None:
Expand Down
3 changes: 2 additions & 1 deletion tests/test_filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import pathlib

import pytest
from hypothesis import given, strategies
from hypothesis import given
from hypothesis import strategies

from cellveyor import filesystem

Expand Down

0 comments on commit 2f897b7

Please sign in to comment.