Skip to content
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
30 changes: 30 additions & 0 deletions art/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,34 @@
from .params import ART_VERSION, FONT_NAMES, ART_NAMES, DECORATION_NAMES, DEFAULT_FONT
from .params import ART_COUNTER, FONT_COUNTER, DECORATION_COUNTER
from .params import NON_ASCII_ARTS, NON_ASCII_FONTS, ASCII_FONTS, ASCII_ARTS

__version__ = ART_VERSION

__all__ = [
"artError",
"aprint",
"art",
"randart",
"tprint",
"tsave",
"text2art",
"lprint",
"line",
"decor",
"help_func",
"get_font_dic",
"set_default",
"art_list",
"font_list",
"decor_list",
"FONT_NAMES",
"ART_NAMES",
"DECORATION_NAMES",
"DEFAULT_FONT",
"ART_COUNTER",
"FONT_COUNTER",
"DECORATION_COUNTER",
"NON_ASCII_ARTS",
"NON_ASCII_FONTS",
"ASCII_FONTS",
"ASCII_ARTS"]
2 changes: 1 addition & 1 deletion autopep8.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
python -m autopep8 art --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 art --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --exclude tests --verbose
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 art_profile.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 otherfile --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
2 changes: 1 addition & 1 deletion autopep8.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
python -m autopep8 art --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 art --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --exclude tests --verbose
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 art_profile.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 otherfile --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose