1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Remove unused follow_circuits arg for cable tracing

This commit is contained in:
Jeremy Stretch
2020-03-18 21:14:53 -04:00
parent 40bfb55370
commit e143158f12
3 changed files with 6 additions and 6 deletions

View File

@@ -77,7 +77,7 @@ class CableTraceMixin(object):
# Initialize the path array
path = []
for near_end, cable, far_end in obj.trace(follow_circuits=True):
for near_end, cable, far_end in obj.trace():
# Serialize each object
serializer_a = get_serializer_for_model(near_end, prefix='Nested')