From 801c4e0099035bc44a70375b02017e935461daef Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Sat, 6 Apr 2013 23:40:21 +0200 Subject: [PATCH] Remove useless code This seems to have no purpose to me. Signed-off-by: Julien Danjou --- hy/models/string.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/hy/models/string.py b/hy/models/string.py index ec64504..8e6f82e 100644 --- a/hy/models/string.py +++ b/hy/models/string.py @@ -34,7 +34,3 @@ class HyString(HyObject, _str_type): scripts. It's either a ``str`` or a ``unicode``, depending on the Python version. """ - - def __new__(cls, value): - obj = _str_type.__new__(cls, value) - return obj