Skip to content

Commit

Permalink
use the proper style for argument names for python
Browse files Browse the repository at this point in the history
  • Loading branch information
Jyrno42 committed Oct 29, 2014
1 parent 773387a commit 4d3afb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elvis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.0.0-rc2'
__version__ = '1.0.0-rc3'
__all__ = ['api', 'enums', 'models']
2 changes: 1 addition & 1 deletion elvis/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def __init__(self, **kwargs):

self.HoldingBaseId = kwargs.get('holding_base_id') # int
self.Id = kwargs.get('batch_id', None) # int or None
self.ForestNotice = kwargs.get('ForestNotice', None) # string or None
self.ForestNotice = kwargs.get('forest_notice', None) # string or None

self.PreviousOwnerAddress = kwargs.get('prev_owner_address') # string
self.PreviousOwnerCode = kwargs.get('prev_owner_code') # string
Expand Down

0 comments on commit 4d3afb3

Please sign in to comment.