1
0
Fork 1
mirror of https://github.com/maunium/stickerpicker synced 2024-09-16 00:11:03 +00:00

Rename import.py, since import is a keyword

from sticker.import import cmd
                 ^
SyntaxError: invalid syntax

Fixes https://github.com/maunium/stickerpicker/issues/27.
This commit is contained in:
SpiritCroc 2021-01-19 16:58:59 +01:00
parent d3adedf3df
commit 601d2acc32
2 changed files with 1 additions and 1 deletions

View file

@ -47,7 +47,7 @@ setuptools.setup(
"Programming Language :: Python :: 3.8",
],
entry_points={"console_scripts": [
"sticker-import=sticker.import:cmd",
"sticker-import=sticker.stickerimport:cmd",
"sticker-pack=sticker.pack:cmd",
]},
)