mirror of
https://github.com/Steffo99/emblematic.git
synced 2024-11-21 14:24:18 +00:00
Reformat code
This commit is contained in:
parent
d64bb15df0
commit
59289e68af
4 changed files with 13 additions and 14 deletions
|
@ -1,7 +1,6 @@
|
|||
from . import compose
|
||||
from . import files
|
||||
|
||||
|
||||
__all__ = (
|
||||
"compose",
|
||||
"files",
|
||||
|
|
|
@ -4,13 +4,14 @@ Command-line interface for :mod:`emblematic`.
|
|||
Implemented with :mod:`click`.
|
||||
"""
|
||||
|
||||
import click
|
||||
import bs4
|
||||
import pathlib
|
||||
import cairosvg
|
||||
|
||||
from .files import get_svgs
|
||||
import bs4
|
||||
import cairosvg
|
||||
import click
|
||||
|
||||
from .compose import compose_basic
|
||||
from .files import get_svgs
|
||||
|
||||
|
||||
@click.group()
|
||||
|
@ -103,6 +104,5 @@ def basic(bg_file, icon_paths, icon_fill, output_dir, width, height, keep_svg):
|
|||
click.echo()
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
Loading…
Reference in a new issue