Skip to content

Commit 983ff88

Browse files
committed
Clean up docstrings
1 parent 805936d commit 983ff88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/electos/ballotmaker/ballots/contest_data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from dataclasses import dataclass, field
2-
from typing import List
32

43

54
@dataclass
@@ -58,6 +57,8 @@ def __post_init__(self):
5857

5958
@dataclass
6059
class CandidateData:
60+
"""Retrieve candidate data from a dict"""
61+
6162
_can_data: dict = field(repr=False)
6263
id: str = field(init=False)
6364
_names: list = field(init=False, repr=False, default_factory=list)

0 commit comments

Comments
 (0)