Skip to content

Commit d3a28e0

Browse files
committed
Add blank lines after docstrings (by Ruff 0.3.0)
1 parent d815445 commit d3a28e0

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

pyclean/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Main entry point for running pyclean as a module.
33
"""
4+
45
from .cli import main
56

67
if __name__ == '__main__':

pyclean/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Command line interface implementation for pyclean.
33
"""
4+
45
import argparse
56
import logging
67
import sys

pyclean/compat.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Cross-Python version compatibility.
33
"""
4+
45
from argparse import _AppendAction as AppendAction
56

67

pyclean/modern.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Modern, cross-platform, pure-Python pyclean implementation.
33
"""
4+
45
import logging
56
from pathlib import Path
67

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Mock objects for tests of the modern implementation.
33
"""
4+
45
from pathlib import Path
56
from unittest.mock import Mock
67

tests/test_cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Tests for the pyclean CLI.
33
"""
4+
45
import os
56
import re
67
import shutil

tests/test_modern.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Tests for the modern module
33
"""
4+
45
import logging
56
from argparse import Namespace
67
from pathlib import Path

0 commit comments

Comments
 (0)