Skip to content

Commit 36403f9

Browse files
committed
black
1 parent 63567ff commit 36403f9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

package/MDAnalysis/analysis/base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ def _get_aggregator(self):
174174
@dataclass(frozen=True)
175175
class RunConfig:
176176
"""Stores resolved `run()` configuration with normalized defaults."""
177+
177178
start: Optional[int] = None
178179
stop: Optional[int] = None
179180
step: Optional[int] = None
@@ -188,6 +189,7 @@ class RunConfig:
188189
class RunState:
189190
"""Stores runtime-generated attributes that can be used
190191
during the analysis."""
192+
191193
slicer: Optional[Union[slice, np.ndarray]] = None
192194
n_frames: Optional[int] = None
193195
computation_groups: Optional[List[np.ndarray]] = None
@@ -975,7 +977,7 @@ def _get_aggregator(self) -> ResultsGroup:
975977
.. versionadded:: 2.8.0
976978
"""
977979
return ResultsGroup(lookup=None)
978-
980+
979981
@property
980982
def run_config(self) -> RunConfig:
981983
"""Stores normalized arguments for `run()`.

0 commit comments

Comments
 (0)