| commit | b0e45c8f19e0bf6fe0543147d67c0c4456dd1791 | [log] [tgz] |
|---|---|---|
| author | Philipp Le <philipp@philipple.de> | Tue Apr 19 22:03:44 2022 +0200 |
| committer | Philipp Le <philipp@philipple.de> | Mon May 23 22:10:11 2022 +0200 |
| tree | 1925f00d3e5c9a48f30e75a9eb21052549983b84 | |
| parent | a532cf68b70969fb793ad676127b29faa397afba [diff] [blame] |
feat: Ch02 Phasor Change-Id: Ifb6a8a0c48073467bf35111d0f5ec3600705c32c
diff --git a/dcs/frames/__init__.py b/dcs/frames/__init__.py index 4e5dd51..533546c 100644 --- a/dcs/frames/__init__.py +++ b/dcs/frames/__init__.py
@@ -7,9 +7,12 @@ from typing import List, Type from . import base +from .ch02_phasor import Ch02PhasorWindow + def get_windows() -> List[Type[base.Window]]: return [ + Ch02PhasorWindow, ]