Skip to content

Commit

Permalink
Activate isort linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed Jul 30, 2024
1 parent 113f413 commit 4e3ded3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion btest
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import threading
import time
import uuid
import xml.dom.minidom

from datetime import datetime

# We require the external multiprocess library on Windows due to pickling issues
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ per-file-ignores = """
"""

[tool.ruff.lint]
select = ["C4", "COM", "F", "UP"]
select = ["C4", "COM", "F", "I", "UP"]
9 changes: 5 additions & 4 deletions sphinx/btest-sphinx.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import os
import os.path
import subprocess
import re
import subprocess

from docutils import nodes, utils
from docutils.parsers.rst import directives, Directive, Parser
from docutils.parsers.rst import Directive, Parser, directives
from docutils.transforms import Transform
from sphinx.util.console import darkgreen, red
from sphinx.errors import SphinxError

from sphinx.directives.code import LiteralInclude
from sphinx.errors import SphinxError
from sphinx.util import logging
from sphinx.util.console import darkgreen, red

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 4e3ded3

Please sign in to comment.