Skip to content

Commit

Permalink
Bump to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Jun 6, 2013
1 parent e1cb239 commit a1759dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pygal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""

__version__ = '0.13.0'
__version__ = '1.0.0'
import sys
from pygal.config import Config
from pygal.ghost import Ghost
Expand Down
4 changes: 2 additions & 2 deletions pygal/graph/line.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, *args, **kwargs):

@cached_property
def _values(self):
return [
return [
val[1]
for serie in self.series
for val in (serie.interpolated
Expand All @@ -43,7 +43,7 @@ def _values(self):

@cached_property
def _secondary_values(self):
return [
return [
val[1]
for serie in self.secondary_series
for val in (serie.interpolated
Expand Down

0 comments on commit a1759dc

Please sign in to comment.