From fa984b4f30eee5369ef5951b1bb1ad113819dba2 Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Tue, 14 Jul 2026 09:02:04 +0200 Subject: [PATCH] chore: remove unused pvlink --- services/master/current/app/src/AGEBD-SERVICE-MASTER.py | 1 - .../app/src/AGEBD-SERVICE-{{service_name_upper}}.py.jinja | 2 -- 2 files changed, 3 deletions(-) diff --git a/services/master/current/app/src/AGEBD-SERVICE-MASTER.py b/services/master/current/app/src/AGEBD-SERVICE-MASTER.py index e36fe56..ba6d3f3 100644 --- a/services/master/current/app/src/AGEBD-SERVICE-MASTER.py +++ b/services/master/current/app/src/AGEBD-SERVICE-MASTER.py @@ -24,7 +24,6 @@ import typer import yaml from agebd.enums import LogLevel -from agebd.pv import PVLink as PV from agebd.runner import CallbackRunner from agebd.service.base import BaseService from agebd.service.pvs import BasePVs diff --git a/templates/service/{{service_name_lower}}/current/app/src/AGEBD-SERVICE-{{service_name_upper}}.py.jinja b/templates/service/{{service_name_lower}}/current/app/src/AGEBD-SERVICE-{{service_name_upper}}.py.jinja index e06d99d..9514362 100644 --- a/templates/service/{{service_name_lower}}/current/app/src/AGEBD-SERVICE-{{service_name_upper}}.py.jinja +++ b/templates/service/{{service_name_lower}}/current/app/src/AGEBD-SERVICE-{{service_name_upper}}.py.jinja @@ -3,7 +3,6 @@ import time import typer from agebd.enums import LogLevel from agebd.pv import LocalPVLink -from agebd.pv import PVLink as PV from agebd.runner import CallbackRunner from agebd.service.base import BaseService from agebd.service.pvs import BasePVs @@ -14,7 +13,6 @@ __version__ = printgetversion(__file__) PV = get_pv_class() - class PVs(BasePVs): # Option 1: ## Service specific PVs from dedicated IOC