Skip to content

Commit

Permalink
Clean up docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
stratofax committed Sep 7, 2022
1 parent 805936d commit 983ff88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/electos/ballotmaker/ballots/contest_data.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from dataclasses import dataclass, field
from typing import List


@dataclass
Expand Down Expand Up @@ -58,6 +57,8 @@ def __post_init__(self):

@dataclass
class CandidateData:
"""Retrieve candidate data from a dict"""

_can_data: dict = field(repr=False)
id: str = field(init=False)
_names: list = field(init=False, repr=False, default_factory=list)
Expand Down

0 comments on commit 983ff88

Please sign in to comment.