Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Add link to beer on untappd
Browse files Browse the repository at this point in the history
  • Loading branch information
iantrich committed Aug 22, 2018
1 parent 4345078 commit 13e9c32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/sensor/untappd.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

REQUIREMENTS = ['pyuntappd==0.0.5']

__version__ = '0.0.9'
__version__ = '0.1.0'

_LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -175,6 +175,7 @@ def update(self):
"beer_abv": beer['beer']['beer_abv'],
"beer_style": beer['beer']['beer_style'],
"beer_ibu": beer['beer']['beer_ibu'],
"beer_link": 'https://untappd.com/b/' + beer['beer']['beer_slug'] + '/' + str(beer['beer']['bid']),
"rating_score": beer['beer']['rating_score'],
"rating_count": beer['beer']['rating_count'],
"brewery_label": beer['brewery']['brewery_label'],
Expand Down

0 comments on commit 13e9c32

Please sign in to comment.