Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rvhonorato committed Feb 26, 2024
1 parent 33958dd commit de0ccbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/fandas/modules/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ def _make_iter(
combinations = []
for resnum in range(first_resnum, last_resnum + 1):
for e in itertools.product(*direction):

# Fetch residues based on adjusted indices
residues = [
shifts.residues[resnum + offset]
Expand Down
10 changes: 6 additions & 4 deletions tests/modules/test_experiment.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
"""Test the experiment module."""

import pytest
import tempfile
import os
import tempfile
from pathlib import Path
from fandas.modules.experiment import Experiment

import pytest

from fandas.modules.chemical_shift import ChemShift
from fandas.modules.experiment import Experiment
from fandas.modules.input import InputFile

from .. import TEST_INPUT_FILE, TEST_DISTANCE_FILE
from .. import TEST_DISTANCE_FILE, TEST_INPUT_FILE


@pytest.fixture
Expand Down

0 comments on commit de0ccbc

Please sign in to comment.