Skip to content

Commit 142ad0c

Browse files
committed
improving linting
1 parent 62b4bb7 commit 142ad0c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CodeEntropy/config/arg_config_manager.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"help": ("Stop analysing the trajectory at this frame index. This is "
2929
"the frame index of the last frame to be included, so for example"
3030
"if start=0 and end=500 there would be 501 frames analysed. The "
31-
"default -1 will include everything up to the last frame."),
31+
"default -1 will include everything up to the last frame."
32+
),
3233
"default": -1,
3334
},
3435
"step": {

CodeEntropy/main_mcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def main():
134134
number_frames = len(u.trajectory)
135135
elif end == -1:
136136
end = len(u.trajectory)
137-
number_frames = math.floor((end - start) / step)
137+
number_frames = math.floor((end - start) / step)
138138
else:
139139
end = end + 1
140140
number_frames = math.floor((end - start) / step)

0 commit comments

Comments
 (0)