Skip to content

Commit

Permalink
chore: reformat with black
Browse files Browse the repository at this point in the history
  • Loading branch information
lervag committed Mar 21, 2024
1 parent 6932527 commit 3a7915a
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/apy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Package for interfacing and manipulating Anki decks"""

import os
from importlib.metadata import version

Expand Down
1 change: 1 addition & 0 deletions src/apy/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A script to interact with the Anki database"""

import os
from pathlib import Path
import sys
Expand Down
1 change: 1 addition & 0 deletions tests/common.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Implement some basic test fixtures"""

# pylint: disable=too-few-public-methods
import os
import tempfile
Expand Down
1 change: 1 addition & 0 deletions tests/test_basics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test some basic features"""

import pytest

from common import testDir, AnkiEmpty, AnkiSimple
Expand Down
1 change: 1 addition & 0 deletions tests/test_batch_edit.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test batch editing"""

import pytest

from common import testDir, AnkiSimple
Expand Down
1 change: 1 addition & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the CLI"""

import tempfile
import shutil

Expand Down
1 change: 1 addition & 0 deletions tests/test_decks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test some basic features"""

import pytest

from common import testDir, AnkiSimple
Expand Down
1 change: 1 addition & 0 deletions tests/test_errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test errors and warnings"""

import pytest
from click import Abort

Expand Down
1 change: 1 addition & 0 deletions tests/test_models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test model features"""

from common import AnkiSimple


Expand Down

0 comments on commit 3a7915a

Please sign in to comment.