Skip to content

Commit

Permalink
- Added pack name
Browse files Browse the repository at this point in the history
  • Loading branch information
delameter committed Apr 20, 2022
1 parent 1c38e88 commit e5b9cad
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 14 deletions.
5 changes: 3 additions & 2 deletions dev/readme/generate.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
import re
Expand All @@ -11,7 +11,8 @@


def read_file(path: str) -> str:
return open(path, 'rt', encoding='utf8').read()
with open(path, 'rt', encoding='utf8') as f:
return f.read()


def include_file(path: str) -> str:
Expand Down
2 changes: 1 addition & 1 deletion dev/readme/generate_thumbs.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
import io
Expand Down
2 changes: 1 addition & 1 deletion dev/readme/run_examples.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
import importlib
Expand Down
2 changes: 1 addition & 1 deletion pytermor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
from .seq import build, build_c256, build_rgb, SequenceSGR
Expand Down
2 changes: 1 addition & 1 deletion pytermor/fmt.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion pytermor/registry.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion pytermor/seq.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion pytermor/sgr.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
RESET = 0
Expand Down
2 changes: 1 addition & 1 deletion pytermor/util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion tests/test_fmt.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_registry.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_seq.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
# pytermor [ANSI formatted terminal output toolset]
# es7s/pytermor [ANSI formatted terminal output toolset]
# (C) 2022 A. Shavykin <0.delameter@gmail.com>
# -----------------------------------------------------------------------------
import unittest
Expand Down

0 comments on commit e5b9cad

Please sign in to comment.