From 0dfc0fe0febc1f08a985eab8d41372735a1a08b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Chac=C3=B3n?= Date: Thu, 8 Sep 2022 20:53:17 -0600 Subject: [PATCH] Integrate UISP import (optional) --- v1.2/scheduled.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/v1.2/scheduled.py b/v1.2/scheduled.py index ea8840fd..5dcbc8b1 100644 --- a/v1.2/scheduled.py +++ b/v1.2/scheduled.py @@ -3,9 +3,12 @@ import schedule from LibreQoS import refreshShapers from graphBandwidth import refreshBandwidthGraphs from graphLatency import refreshLatencyGraphs -from ispConfig import bandwidthGraphingEnabled, latencyGraphingEnabled +from ispConfig import bandwidthGraphingEnabled, latencyGraphingEnabled, automaticImportUISP +from integrationUISP import importFromUISP def importandshape(): + if automaticImportUISP: + importFromUISP() refreshShapers() if __name__ == '__main__':