Skip to content

Commit 7ab2aae

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 94517a7 commit 7ab2aae

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

cfonts/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
:license: GNU GPLv2
77
:author: Frost Ming<[email protected]>
88
"""
9+
910
__all__ = ["say", "render"]
1011

1112
from .core import render, say

cfonts/__version__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
:license: GNU GPLv2
77
:author: Frost Ming<[email protected]>
88
"""
9+
910
__version__ = "1.5.2"

cfonts/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
:license: GNU GPLv2
77
:author: Frost Ming<[email protected]>
88
"""
9+
910
import argparse
1011
import sys
1112
from typing import List, Optional

cfonts/colors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Utility functions for handling terminal colors
33
"""
4+
45
import os
56
from typing import Iterable, List, Mapping, NamedTuple, Tuple, no_type_check
67

cfonts/consts.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
:license: GNU GPLv2
77
:author: Frost Ming<[email protected]>
88
"""
9+
910
import enum
1011
from shutil import get_terminal_size
1112
from typing import Mapping, Tuple

cfonts/core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
:license: GNU GPLv2
77
:author: Frost Ming<[email protected]>
88
"""
9+
910
import argparse
1011
import json
1112
import pkgutil

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""pytest configuration"""
2+
23
import re
34

45
import pytest

0 commit comments

Comments
 (0)