Skip to content

Commit

Permalink
Merge pull request #331 from jromer94/master
Browse files Browse the repository at this point in the history
added mini keg size
  • Loading branch information
mik3y authored Sep 12, 2016
2 parents 4a6529d + caf3cf6 commit 80520ae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pykeg/core/keg_sizes.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"""Constants about physical keg shell."""

# Most common shell sizes, from smalles to largest.
MINI = 'mini'
CORNY_25 = 'corny-2_5-gal'
CORNY_30 = 'corny-3-gal'
CORNY = 'corny'
Expand All @@ -31,6 +32,7 @@
OTHER = 'other'

VOLUMES_ML = {
MINI: 5000,
CORNY_25: 9463.53,
CORNY_30: 11356.2,
CORNY: 18927.1,
Expand All @@ -44,6 +46,7 @@
}

DESCRIPTIONS = {
MINI: 'Mini Keg (5 L)',
CORNY_25: 'Corny Keg (2.5 gal)',
CORNY_30: 'Corny Keg (3.0 gal)',
CORNY: 'Corny Keg (5 gal)',
Expand Down

0 comments on commit 80520ae

Please sign in to comment.