nothing important
All checks were successful
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Successful in -42s
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Has been skipped

This commit is contained in:
Brendan Haines 2024-12-19 00:28:20 -07:00
parent 5650e7b03b
commit f35d9a85a6
2 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import click
@click.option("--power", "-p", type=float, default=-5, help="Port output power [dBm].")
@click.option("--snp", "-o", type=click.Path(), help="Path for output Touchstone file.")
def capture(start: float, stop: float, pts: int, power: float, snp: Path, ports: int):
pass
raise NotImplementedError
# %%

View File

@ -1,3 +1,4 @@
# %% imports
import sys
from pathlib import Path
from typing import Callable, List, Tuple
@ -25,6 +26,7 @@ from charon_vna.util import db20, s2vswr
# from vna import Charon
# %%
DEFAULT_CONFIG = dict(
frequency=np.arange(1e9, 2e9, 11), # Hz
power=-5, # dB
@ -208,5 +210,6 @@ def main() -> None:
app.exec()
# %%
if __name__ == "__main__":
main()