File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -208,8 +208,6 @@ def __init__(self, **kwargs):
208208 self .pretty_print = pretty_print
209209
210210 def to_internal_value (self , data ):
211- # logger.debug(f"to_internal_value called with data: {data}")
212- # logger.debug("Stacktrace:\n%s", "".join(traceback.format_stack()))
213211 if isinstance (data , list ) and data == ["" ] and self .allow_empty :
214212 return []
215213 if isinstance (data , six .string_types ):
@@ -243,7 +241,6 @@ def to_internal_value(self, data):
243241 return data_safe
244242
245243 def to_representation (self , value ):
246- # logger.debug(f"to_representation called with value: {value}")
247244 if not isinstance (value , list ):
248245 # we can't use isinstance because TagRelatedManager is non-existing class
249246 # it cannot be imported or referenced, so we fallback to string
You can’t perform that action at this time.
0 commit comments