Skip to content

Commit

Permalink
Ran black on the files I made tiny changes to to satisfy our benevole…
Browse files Browse the repository at this point in the history
…nt robot overlords
  • Loading branch information
Rodot- committed Aug 15, 2024
1 parent 9634be0 commit e4eeee5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion tardis/io/configuration/config_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,12 @@ def parse_convergence_section(convergence_section_dict):
"""
convergence_parameters = ["damping_constant", "threshold", "type"]

for convergence_variable in ["t_inner", "t_rad", "w", "v_inner_boundary"]:
for convergence_variable in [
"t_inner",
"t_rad",
"w",
"v_inner_boundary",
]:
if convergence_variable not in convergence_section_dict:
convergence_section_dict[convergence_variable] = {}
convergence_variable_section = convergence_section_dict[
Expand Down
2 changes: 1 addition & 1 deletion tardis/model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def radius(self):
@property
def v_boundary_inner(self):
return self.geometry.v_inner_boundary

@property
def v_inner_boundary(self):
return self.v_boundary_inner
Expand Down

0 comments on commit e4eeee5

Please sign in to comment.