Skip to content

Commit 4d00c93

Browse files
committed
Removing prints.
1 parent f53c23c commit 4d00c93

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

intercom/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def put(cls, path, **params):
8181

8282
@classmethod
8383
def delete(cls, path, **params):
84-
print "DELETE %s" % (path)
8584
return cls.send_request_to_path('DELETE', path, params)
8685

8786
class __metaclass__(type):

intercom/api_operations/all.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ class All(object):
77
@classmethod
88
def all(cls):
99
collection = utils.resource_class_to_collection_name(cls)
10-
print "list %s" % (collection)
1110
finder_url = "/%s" % (collection)
1211
return CollectionProxy(cls, collection, finder_url)

intercom/api_operations/find.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class Find(object):
77
@classmethod
88
def find(cls, **params):
99
collection = utils.resource_class_to_collection_name(cls)
10-
print "find %s in %s" % (params, collection)
1110
if 'id' in params:
1211
response = Intercom.get("/%s/%s" % (collection, params['id']))
1312
else:

intercom/api_operations/find_all.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class FindAll(object):
77
@classmethod
88
def find_all(cls, **params):
99
collection = utils.resource_class_to_collection_name(cls)
10-
print "find_all %s in %s" % (params, collection)
1110
if 'id' in params and 'type' not in params:
1211
finder_url = "/%s/%s" % (collection, params['id'])
1312
else:

intercom/lib/flat_store.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def __init__(self, *args, **kwargs):
77
self.update(*args, **kwargs)
88

99
def __setitem__(self, key, value):
10-
# print "SETTING ITEM [%s]=[%s]" % (key, value)
1110
if not (
1211
isinstance(value, numbers.Real) or
1312
isinstance(value, basestring)

0 commit comments

Comments
 (0)