Skip to content
Snippets Groups Projects
Commit 78ce1a40 authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Copy over changes from 0a83fb3c

parent ab3523c0
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ class AtomsData(collections.abc.Sequence):
...
@overload # noqa F811
def __getitem__(self, item: slice) -> List[Dict[str, Any]]:
def __getitem__(self, item: slice) -> List[Dict[str, Any]]: # noqa F811
...
def __getitem__(self, item): # noqa F811
......
......@@ -132,7 +132,7 @@ class KpointsData(collections.abc.Sequence):
...
@overload # noqa F811
def __getitem__(self, item: slice) -> List[KpointData]:
def __getitem__(self, item: slice) -> List[KpointData]: # noqa F811
...
def __getitem__(self, item): # noqa F811
......
......@@ -82,7 +82,7 @@ class CalculateSansTransmissionTest(unittest.TestCase):
# Function is too complex, but it can be tided when state is tamed
@staticmethod # noqa: C901
def _get_state(transmission_radius_on_detector=None, transmission_roi_files=None, transmission_mask_files=None,
def _get_state(transmission_radius_on_detector=None, transmission_roi_files=None, transmission_mask_files=None, # noqa: C901
transmission_monitor=None, incident_monitor=None, rebin_type=None, wavelength_low=None,
wavelength_high=None, wavelength_step=None, wavelength_step_type=None,
use_full_wavelength_range=None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment