Skip to content

Commit

Permalink
Merge pull request #335 from DeepSenseCA/api_fix-print-statement
Browse files Browse the repository at this point in the history
MNT: Fix print statement about offset line added to EV file
  • Loading branch information
scottclowe committed Nov 24, 2022
2 parents 8c5dd13 + 8dea736 commit 25a0515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions echofilter/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -1708,7 +1708,7 @@ def change_line_color_thickness(line_name, color, thickness, ev_app=ev_app):
line.Name = target_name

if verbose >= 2:
print(f" Added offset {key} line '{line.Name}'")
print(f" Added {key} line '{line.Name}'")

# Change the color and thickness of the line
change_line_color_thickness(
Expand Down Expand Up @@ -1869,7 +1869,7 @@ def change_line_color_thickness(line_name, color, thickness, ev_app=ev_app):
line.Name = target_name

if verbose >= 2:
print(f" Added offset {key} line '{line.Name}'")
print(f" Added {offset}m offset {key} line '{line.Name}'")

# Change the color and thickness of the line
change_line_color_thickness(
Expand Down

0 comments on commit 25a0515

Please sign in to comment.