Skip to content

Commit

Permalink
Format using black's new stable style
Browse files Browse the repository at this point in the history
  • Loading branch information
pylipp committed Feb 3, 2024
1 parent 089aa61 commit b1fcc84
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
9 changes: 6 additions & 3 deletions financeager/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command line interface of financeager application."""

# PYTHON_ARGCOMPLETE_OK
import argparse
import os
Expand Down Expand Up @@ -467,9 +468,11 @@ def _parse_command(args=None, plugins=None):
subparser.add_argument(
"-C",
"--config-filepath",
default=financeager.CONFIG_FILEPATH
if os.path.exists(financeager.CONFIG_FILEPATH)
else None,
default=(
financeager.CONFIG_FILEPATH
if os.path.exists(financeager.CONFIG_FILEPATH)
else None
),
help=f"path to config file. Default: {financeager.CONFIG_FILEPATH}",
)
subparser.add_argument(
Expand Down
1 change: 1 addition & 0 deletions financeager/clients.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Infrastructure for backend communication."""

import traceback
from collections import namedtuple

Expand Down
1 change: 1 addition & 0 deletions financeager/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Configuration of the financeager application."""

from configparser import ConfigParser, NoOptionError, NoSectionError

from financeager import plugin
Expand Down
1 change: 1 addition & 0 deletions financeager/listing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tabular, frontend-representation of financeager pocket."""

from json import dumps as jdumps

from . import DEFAULT_TABLE, RECURRENT_TABLE
Expand Down
1 change: 1 addition & 0 deletions financeager/plugin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for plugin development."""

import abc


Expand Down
1 change: 1 addition & 0 deletions financeager/server.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Top-level service organizing databases."""

import glob
import os.path

Expand Down

0 comments on commit b1fcc84

Please sign in to comment.