Skip to content

Commit

Permalink
Apply black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jun 24, 2024
1 parent 84c908e commit d42a4d2
Show file tree
Hide file tree
Showing 14 changed files with 14 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 @@
"""Sphinx configuration."""

project = "nox-poetry"
author = "Claudio Jolowicz"
copyright = "2020, Claudio Jolowicz"
Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Nox sessions."""

import os
import shlex
import shutil
Expand Down
1 change: 1 addition & 0 deletions src/nox_poetry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- :const:`WHEEL`
- :const:`SDIST`
"""

from nox_poetry.poetry import DistributionFormat
from nox_poetry.sessions import Session
from nox_poetry.sessions import session
Expand Down
1 change: 1 addition & 0 deletions src/nox_poetry/poetry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Poetry interface."""

import re
import sys
from enum import Enum
Expand Down
1 change: 1 addition & 0 deletions src/nox_poetry/sessions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Replacements for the ``nox.session`` decorator and the ``nox.Session`` class."""

import functools
import hashlib
import re
Expand Down
1 change: 1 addition & 0 deletions src/nox_poetry/sessions.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Type stubs for nox_poetry.sessions."""

from pathlib import Path
from typing import Any
from typing import Callable
Expand Down
1 change: 1 addition & 0 deletions tests/functional/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Fixtures for functional tests."""

import inspect
import os
import subprocess # noqa: S404
Expand Down
1 change: 1 addition & 0 deletions tests/functional/test_installroot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functional tests for ``installroot``."""

import nox_poetry
from tests.functional.conftest import Project
from tests.functional.conftest import list_packages
Expand Down
1 change: 1 addition & 0 deletions tests/functional/test_poetry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functional tests for ``session.poetry``."""

import nox_poetry
from tests.functional.conftest import Project
from tests.functional.conftest import list_packages
Expand Down
1 change: 1 addition & 0 deletions tests/functional/test_session.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functional tests for the `@session` decorator."""

import sys
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions tests/unit/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Fixtures."""

import sys
from pathlib import Path
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_nox_poetry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests."""

from typing import Iterable

import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_poetry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests for the poetry module."""

from pathlib import Path
from textwrap import dedent
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_sessions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests for the sessions module."""

from textwrap import dedent
from typing import Callable
from typing import Iterator
Expand Down

0 comments on commit d42a4d2

Please sign in to comment.