Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove future #43

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion brother_ql/backends/linux_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
Works on Linux.
"""

from __future__ import unicode_literals
from builtins import str

import glob, os, time, select
Expand Down
3 changes: 1 addition & 2 deletions brother_ql/backends/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
Works cross-platform.
"""

from __future__ import unicode_literals
from builtins import str

import socket, os, time, select
import socket, time, select

from .generic import BrotherQLBackendGeneric

Expand Down
1 change: 0 additions & 1 deletion brother_ql/backends/pyusb.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
Install via `pip install pyusb`
"""

from __future__ import unicode_literals
from builtins import str, bytes

import time
Expand Down
1 change: 0 additions & 1 deletion brother_ql/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python

# Python standard library
from __future__ import print_function
import logging

# external dependencies
Expand Down
4 changes: 0 additions & 4 deletions brother_ql/conversion.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
#!/usr/bin/env python

from __future__ import division, unicode_literals
from builtins import str

import logging

from PIL import Image
import PIL.ImageOps, PIL.ImageChops

from brother_ql.raster import BrotherQLRaster
from brother_ql.devicedependent import ENDLESS_LABEL, DIE_CUT_LABEL, ROUND_DIE_CUT_LABEL, PTOUCH_ENDLESS_LABEL
from brother_ql.devicedependent import label_type_specs, right_margin_addition
from brother_ql import BrotherQLUnsupportedCmd
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ authors = [
license = {text = "GPL"}
dependencies = [
"click",
"future",
"packbits",
"pillow>=10.0.0",
"pyusb",
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
platforms = 'any',
install_requires = [
"click",
"future",
"packbits",
"pillow>=10.0.0",
"pyusb",
Expand Down