Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions camacqplugins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide plugins for camacq."""

from pathlib import Path

__version__ = (Path(__file__).parent / "VERSION").read_text(encoding="utf-8").strip()
1 change: 1 addition & 0 deletions camacqplugins/gain/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Handle default gain feedback plugin."""

import logging
import os
from collections import defaultdict, namedtuple
Expand Down
1 change: 1 addition & 0 deletions camacqplugins/production/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide a plugin for production standard flow."""

import logging
from math import ceil

Expand Down
2 changes: 1 addition & 1 deletion requirements_lint.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
black==23.12.1
black==24.10.0
flake8==7.1.1
flake8-docstrings==1.7.0
pylint==3.1.0
1 change: 1 addition & 0 deletions tests/common.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide common test utils."""

from pathlib import Path

IMAGE_DATA_DIR = (Path(__file__).parent / "fixtures/image_data").resolve()
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide package level pytest fixtures."""

import pytest

from camacq.control import Center
Expand Down
1 change: 1 addition & 0 deletions tests/gain/test_gain.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test gain calculation."""

from unittest.mock import patch, PropertyMock

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions tests/production/test_production.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the production plugin."""

from unittest.mock import AsyncMock, call

import voluptuous as vol
Expand Down