Skip to content

Commit

Permalink
Add blank lines after docstrings (by Ruff 0.3.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
bittner committed Mar 1, 2024
1 parent d815445 commit d3a28e0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions pyclean/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Main entry point for running pyclean as a module.
"""

from .cli import main

if __name__ == '__main__':
Expand Down
1 change: 1 addition & 0 deletions pyclean/cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Command line interface implementation for pyclean.
"""

import argparse
import logging
import sys
Expand Down
1 change: 1 addition & 0 deletions pyclean/compat.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Cross-Python version compatibility.
"""

from argparse import _AppendAction as AppendAction


Expand Down
1 change: 1 addition & 0 deletions pyclean/modern.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Modern, cross-platform, pure-Python pyclean implementation.
"""

import logging
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Mock objects for tests of the modern implementation.
"""

from pathlib import Path
from unittest.mock import Mock

Expand Down
1 change: 1 addition & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Tests for the pyclean CLI.
"""

import os
import re
import shutil
Expand Down
1 change: 1 addition & 0 deletions tests/test_modern.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Tests for the modern module
"""

import logging
from argparse import Namespace
from pathlib import Path
Expand Down

0 comments on commit d3a28e0

Please sign in to comment.