We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 757fe33 commit 709d908Copy full SHA for 709d908
3 files changed
.github/workflows/black.yml
@@ -1,10 +1,13 @@
1
-name: Lint
+name: Lint (Black code style)
2
3
on: [push, pull_request]
4
5
jobs:
6
- lint:
+ black-code-style:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v3
10
- uses: psf/black@stable
11
+ with:
12
+ version: "23.3.0"
13
+
src/escpos/escpos.py
@@ -592,7 +592,6 @@ def soft_barcode(
592
text_distance=1,
593
center=True,
594
):
595
-
596
image_writer = ImageWriter()
597
598
# Check if barcode type exists
test/test_function_set.py
@@ -255,7 +255,6 @@ def test_align_right():
255
256
257
def test_densities():
258
259
for density in range(8):
260
instance = printer.Dummy()
261
instance.set(density=density)
0 commit comments