Rename interface.bar.Bar -> interface.percentage_bar.PercentageBar

This commit is contained in:
Eryn Wells 2022-05-16 16:47:21 -07:00
parent 6e0112fd59
commit e5485300ef
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ from typing import List, Optional, Tuple
from . import color
from ..geometry import Point
class Bar:
class PercentageBar:
'''A bar that expresses a percentage.'''
def __init__(self, *, position: Point, width: int, colors: Optional[List[Tuple[float, color.Color]]] = None):