Skip to content

Commit

Permalink
Update parts.py (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanVusich authored Jul 15, 2019
1 parent 27fb8bc commit b141472
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pcpartpicker/parts.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ class Memory:
price_per_gb: Money
color: str
cas_timing: int
error_correction: str
price: Money

def __post_init__(self):
Expand All @@ -333,6 +334,7 @@ def __post_init__(self):
check_typing(self.color, str)
check_typing(self.cas_timing, int)
check_typing(self.price, Money)
check_typing(self.error_correction, str)

@property
def total_size(self):
Expand Down

0 comments on commit b141472

Please sign in to comment.