progress-table 2.2.0__tar.gz → 2.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {progress-table-2.2.0 → progress-table-2.2.1}/PKG-INFO +1 -1
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/__init__.py +1 -1
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/v1/styles.py +5 -1
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table.egg-info/PKG-INFO +1 -1
- {progress-table-2.2.0 → progress-table-2.2.1}/LICENSE.txt +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/README.md +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/v0/__init__.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/v0/progress_table.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/v0/symbols.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/v1/__init__.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/v1/common.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table/v1/progress_table.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table.egg-info/PKG-INFO.sync-conflict-20240314-015933-NXTV2IO +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table.egg-info/SOURCES.txt +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table.egg-info/dependency_links.txt +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table.egg-info/requires.txt +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/progress_table.egg-info/top_level.txt +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/pyproject.toml +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/setup.cfg +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/setup.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/tests/test_docs_automated.py +0 -0
- {progress-table-2.2.0 → progress-table-2.2.1}/tests/test_examples_automated.py +0 -0
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Copyright (c) 2022-2024 Szymon Mikler
|
|
2
2
|
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Tuple, Union
|
|
6
|
+
|
|
3
7
|
from progress_table.v1.common import ALL_COLOR_NAME, maybe_convert_to_colorama
|
|
4
8
|
|
|
5
9
|
|
|
@@ -73,7 +77,7 @@ class PbarStyleBase:
|
|
|
73
77
|
name: str
|
|
74
78
|
filled: str
|
|
75
79
|
empty: str
|
|
76
|
-
head: str
|
|
80
|
+
head: Union[str, Tuple[str, ...]]
|
|
77
81
|
color: str = ""
|
|
78
82
|
color_empty: str = ""
|
|
79
83
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|