Skip to content

Commit

Permalink
fix: delete imports in top level
Browse files Browse the repository at this point in the history
  • Loading branch information
jokasimr committed Oct 25, 2023
1 parent f6b242a commit 81536bd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/essreflectometry/amor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 Scipp contributors (https://github.com/scipp)
# flake8: noqa: F401
from itertools import chain
import itertools

import scipp as sc

Expand All @@ -13,7 +13,7 @@
from .types import *

providers = list(
chain(
itertools.chain(
reflectometry_providers,
load.providers,
calibrations.providers,
Expand All @@ -37,3 +37,6 @@
Chopper1Position[Run]: sc.vector(value=[0, 0, -15.5], unit='m'),
Chopper2Position[Run]: sc.vector(value=[0, 0, -14.5], unit='m'),
}

del sc
del itertools

0 comments on commit 81536bd

Please sign in to comment.