Skip to content

Commit 53b327a

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 4bff8da commit 53b327a

3 files changed

Lines changed: 4 additions & 12 deletions

File tree

conftest.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
"""
2-
Setup for test suite.
3-
"""
1+
"""Setup for test suite."""
42

53
import uuid
64
from collections.abc import Generator
@@ -63,9 +61,7 @@ def fixture_mock_vws(
6361

6462
@beartype
6563
def pytest_collection_modifyitems(items: list[pytest.Item]) -> None:
66-
"""
67-
Apply the beartype decorator to all collected test functions.
68-
"""
64+
"""Apply the beartype decorator to all collected test functions."""
6965
for item in items:
7066
if isinstance(item, pytest.Function):
7167
item.obj = beartype(obj=item.obj)

docs/source/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
"""
2-
Documentation.
3-
"""
1+
"""Documentation."""

docs/source/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python3
2-
"""
3-
Configuration for Sphinx.
4-
"""
2+
"""Configuration for Sphinx."""
53

64
import importlib.metadata
75
from pathlib import Path

0 commit comments

Comments
 (0)