Skip to content

Commit

Permalink
Merge pull request #30 from c-nichols/master
Browse files Browse the repository at this point in the history
Honor normal and highlight arguments to StyleMap init method
  • Loading branch information
cleder committed May 19, 2015
2 parents 8cb6fe4 + 07ea569 commit 2fc05de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fastkml/styles.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ class StyleMap(_StyleSelector):

def __init__(self, ns=None, id=None, normal=None, highlight=None):
super(StyleMap, self).__init__(ns, id)
pass
self.normal = normal
self.highlight = highlight

def from_element(self, element):
super(StyleMap, self).from_element(element)
Expand Down

0 comments on commit 2fc05de

Please sign in to comment.