Skip to content

Commit

Permalink
also sort the imports via ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
joka921 committed Dec 23, 2024
1 parent 2fc801a commit 5fb5ab0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ pythonpath = ["src"]

[tool.ruff]
line-length = 79
[tool.ruff.lint]
extend-select = ["I"]
7 changes: 4 additions & 3 deletions test/qlever/commands/test_status_execute.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import sys
import unittest
from unittest.mock import patch, MagicMock, call
from io import StringIO
from unittest.mock import MagicMock, call, patch

import qlever.command
from qlever.commands.status import StatusCommand
from io import StringIO
import sys


def get_mock_args(only_show):
Expand Down
3 changes: 2 additions & 1 deletion test/qlever/commands/test_status_other_methods.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import argparse
import unittest

from qlever.commands.status import StatusCommand
import argparse


class TestStatusCommand(unittest.TestCase):
Expand Down

0 comments on commit 5fb5ab0

Please sign in to comment.