Skip to content

Commit

Permalink
- cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
claytondaley committed Apr 24, 2015
1 parent e9da195 commit b2fc056
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"""Implements clients BaseCRM's APIs"""

import logging

logger = logging.getLogger(__name__)

import json
Expand Down
1 change: 1 addition & 0 deletions prototype.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ def format_data_set(self, data):
data[key] = instance
elif issubclass(self.PROPERTIES[key], datetime.datetime):
data[key] = dateutil.parser.parse(data[key])
# This could be adjusted to delete a dynamic list of keys if the resource_id logic was ever proved unreliable
if 'resource_id' in data:
del data['resource_id']

Expand Down

0 comments on commit b2fc056

Please sign in to comment.