mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 20:21:45 +00:00
Support host script on Python 3.9 (#141)
The host script can’t run on Python 3.9 because of [PEP 604][pep]-style annotations. Adding a future import can fix this. The `print_function` import is being removed since it is unnecessary on all releases of Python 3. [pep]: https://peps.python.org/pep-0604/
This commit is contained in:
parent
aca901bb62
commit
bbe11be667
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
||||||
# Under MacOS, use `brew install libusb` to install libusb via Homebrew.
|
# Under MacOS, use `brew install libusb` to install libusb via Homebrew.
|
||||||
# Under Linux, you should be good to go from the start. If not, just use the package manager from your distro to install libusb.
|
# Under Linux, you should be good to go from the start. If not, just use the package manager from your distro to install libusb.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import annotations
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Reference in a new issue