Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes by autopep8 action #411

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion interactive/partmc_model/pypartmc_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def get_concentration(session_id):
mass_conc = np.zeros(N_TIMES)
for i_time in range(N_TIMES):
path = os.path.join(output_dir, f'result_0001_{i_time+1:08}.nc')
aero_data, aero_state, gas_data, gas_state, env_state = ppmc.input_state(path)
aero_data, aero_state, gas_data, gas_state, env_state = ppmc.input_state(
path)
num_conc[i_time] = aero_state.total_num_conc
mass_conc[i_time] = aero_state.total_mass_conc
time[i_time] = env_state.elapsed_time + env_state.start_time
Expand Down