From c683958e4a5ff52bcd58f8d3fcac3384fdf76761 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 1 Dec 2021 22:49:20 +0800 Subject: [PATCH] nac3artiq: clarify comment about virtual class --- nac3artiq/demo/min_artiq.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nac3artiq/demo/min_artiq.py b/nac3artiq/demo/min_artiq.py index fcb59ce9..354d2a2a 100644 --- a/nac3artiq/demo/min_artiq.py +++ b/nac3artiq/demo/min_artiq.py @@ -17,8 +17,7 @@ T = TypeVar('T') class KernelInvariant(Generic[T]): pass -# place the `virtual` class infront of the construct of NAC3 object to ensure the -# virtual class is known during the initializing of NAC3 object +# The virtual class must exist before nac3artiq.NAC3 is created. class virtual(Generic[T]): pass