MCPcopy Create free account
hub / github.com/mitmproxy/mitmproxy / get_order

Method get_order

mitmproxy/addons/view.py:330–338  ·  view source on GitHub ↗

Returns the current view order.

(self)

Source from the content-addressed store, hash-verified

328
329 @command.command("view.order")
330 def get_order(self) -> str:
331 """
332 Returns the current view order.
333 """
334 order = ""
335 for k in self.orders.keys():
336 if self.order_key == self.orders[k]:
337 order = k
338 return order
339
340 # Filter
341 @command.command("view.filter.set")

Callers 1

test_orderFunction · 0.95

Calls 1

keysMethod · 0.45

Tested by 1

test_orderFunction · 0.76