Merge branch 'master' into development
This commit is contained in:
commit
1626af5def
|
@ -1,10 +1,13 @@
|
|||
name: Lint
|
||||
name: Lint (Black code style)
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
black-code-style:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: psf/black@stable
|
||||
with:
|
||||
version: "23.3.0"
|
||||
|
||||
|
|
|
@ -26,6 +26,6 @@ jobs:
|
|||
run:
|
||||
sudo apt-get update -y &&
|
||||
sudo apt-get install -y git python3-sphinx graphviz libenchant-2-2 &&
|
||||
sudo pip install tox
|
||||
sudo pip install tox pycups
|
||||
- name: Test doc build
|
||||
run: tox -e docs
|
||||
|
|
|
@ -592,7 +592,6 @@ class Escpos(object):
|
|||
text_distance=1,
|
||||
center=True,
|
||||
):
|
||||
|
||||
image_writer = ImageWriter()
|
||||
|
||||
# Check if barcode type exists
|
||||
|
|
|
@ -255,7 +255,6 @@ def test_align_right():
|
|||
|
||||
|
||||
def test_densities():
|
||||
|
||||
for density in range(8):
|
||||
instance = printer.Dummy()
|
||||
instance.set(density=density)
|
||||
|
|
Loading…
Reference in New Issue