Skip to content

Commit 3106eaf

Browse files
committed
NER correction and better printing
1 parent e9eee3d commit 3106eaf

File tree

4 files changed

+256
-90
lines changed

4 files changed

+256
-90
lines changed

plasticity/base/response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def __init__(
2222
self.pretty_enabled = pretty_enabled
2323

2424
def __repr__(self):
25-
return '<Response %s>' % id(self)
25+
return '<Response {}>'.format(id(self))
2626

2727
def __str__(self):
28-
return '<Response %s>' % id(self)
28+
return '<Response {}>'.format(id(self))
2929

3030
@classmethod
3131
def from_json(cls, res, **kwargs):

0 commit comments

Comments
 (0)