Skip to content

Commit

Permalink
Reformat with updated black
Browse files Browse the repository at this point in the history
  • Loading branch information
Iain-S committed Aug 9, 2024
1 parent 8cfd462 commit a122ed3
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Configuration file for the Sphinx documentation builder."""

# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import sphinx_rtd_theme
Expand Down
1 change: 1 addition & 0 deletions rctab_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""RCTab CLI package."""

from rctab_cli.cli import acquire_access_token, app

__all__ = ["app", "acquire_access_token"]
1 change: 1 addition & 0 deletions rctab_cli/auth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Authentication helpers for the RCTab CLI."""

import atexit
import logging
from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions rctab_cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Attributes:
APP_NAME: Name of the CLI application.
"""

from functools import lru_cache
from uuid import UUID

Expand Down
1 change: 1 addition & 0 deletions rctab_cli/state.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""State module."""

from dataclasses import dataclass
from typing import Callable, Dict, Optional

Expand Down
1 change: 1 addition & 0 deletions rctab_cli/sub_apps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Subscription management app."""

from rctab_cli.sub_apps.sub import subscription_app

__all__ = ["subscription_app"]
1 change: 1 addition & 0 deletions rctab_cli/sub_apps/sub.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
subscription_app: Typer object for the subscription CLI.
finance_app: Typer object for the finance CLI.
"""

# pylint: disable=too-many-arguments, redefined-outer-name
import calendar
import json
Expand Down
1 change: 1 addition & 0 deletions rctab_cli/types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Types for the RCTab CLI."""

from pydantic import AnyHttpUrl, BaseModel


Expand Down
1 change: 1 addition & 0 deletions rctab_cli/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utility functions for the CLI."""

import typer

from rctab_cli.config import get_cli_settings
Expand Down
1 change: 1 addition & 0 deletions tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities for testing."""

from click.testing import Result


Expand Down

0 comments on commit a122ed3

Please sign in to comment.