[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2023-10-07 00:05:58 +00:00
parent 60fb7eee85
commit 3393523ca3

View File

@ -13,8 +13,9 @@ class StackData:
Object stored on the stack
"""
def __init__(self, current_value: float, min_value: float
, max_value: float) -> None:
def __init__(
self, current_value: float, min_value: float, max_value: float
) -> None:
self.current_value = current_value
self.min_value = min_value
self.max_value = max_value
@ -161,5 +162,5 @@ class MinMaxStack:
if __name__ == "__main__":
from doctest import testmod
testmod()
testmod()