Skip to content

Commit

Permalink
Commit formatting and linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PrinceWalnut committed Jan 5, 2024
1 parent cb02810 commit 7fb21f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
5 changes: 2 additions & 3 deletions src/laue_dials/algorithms/laue.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,8 @@ def gen_beam_models(expts, refls):
# Imports
from copy import deepcopy

from dials.algorithms.refinement.prediction.managed_predictors import (
ExperimentsPredictorFactory,
)
from dials.algorithms.refinement.prediction.managed_predictors import \
ExperimentsPredictorFactory

# Instantiate new ExperimentList/reflection_table
new_expts = ExperimentList()
Expand Down
14 changes: 5 additions & 9 deletions tests/algorithms/test_laue.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import numpy as np
import pytest
from dxtbx.model import ExperimentList
from dials.array_family.flex import reflection_table
from laue_dials.algorithms.laue import (
store_wavelengths,
remove_beam_models,
gen_beam_models,
LaueBase,
LaueAssigner,
LauePredictor,
)
from dxtbx.model import ExperimentList

from laue_dials.algorithms.laue import (LaueAssigner, LaueBase, LauePredictor,
gen_beam_models, remove_beam_models,
store_wavelengths)


@pytest.fixture
Expand Down

0 comments on commit 7fb21f1

Please sign in to comment.