Skip to content

Commit f65a7b3

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

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/test_sorts.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
0/1/2, ``bitonic_sort`` needs a power-of-two length, ``topological_sort`` works
1414
on a graph, and ``stalin_sort``/``wiggle_sort`` deliberately do not fully sort).
1515
"""
16+
1617
from dataclasses import dataclass
1718
from typing import NamedTuple
1819

@@ -71,17 +72,20 @@ def test_heap_sort():
7172
strand_sort,
7273
)
7374

75+
7476
@dataclass
7577
class Person:
7678
name: str = "Bob"
7779
age: int = 37
7880
cost: float = 0.0
7981

82+
8083
class Dog(NamedTuple):
8184
name: str = "Fido"
8285
age: int = 5
8386
weight: float = 15.5
8487

88+
8589
CASES = (
8690
[],
8791
[1],

0 commit comments

Comments
 (0)