Skip to content

Commit df8a40d

Browse files
committed
comment
1 parent bbbfcc6 commit df8a40d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

netbox_custom_objects/api/serializers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,12 @@ def get_display(self, obj):
338338
# Register the serializer in the current module so NetBox can find it
339339
current_module = sys.modules[__name__]
340340
setattr(current_module, serializer_name, serializer)
341-
341+
342+
'''
342343
# Also add to __all__ so it's properly exported
343344
global __all__
344345
if serializer_name not in __all__:
345346
__all__ = __all__ + (serializer_name,)
347+
'''
346348

347349
return serializer

0 commit comments

Comments
 (0)