We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents efae56e + 558f0d5 commit c02431eCopy full SHA for c02431e
.github/workflows/linter.yml
@@ -12,7 +12,10 @@ jobs:
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15
- - name: Install black
16
- run: pip install black
+ - name: Install dependencies
+ run: pip install black isort
17
- name: Run black
18
run: black --line-length=120 --check --diff .
19
+ - name: Run isort
20
+ run: isort --check --diff .
21
+
virtualbox/vbox-adapter-check.py
@@ -23,7 +23,6 @@
23
24
gi.require_version("Notify", "0.7")
25
from gi.repository import Notify
26
-
27
from vboxcommon import *
28
29
DYNAMIC_VM_NAME = ".dynamic"
0 commit comments