Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
roefem committed Sep 2, 2024
1 parent 96e23d6 commit a58fcbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def _make_map(ax, result_dict, thematic_dict, reference_dict):
)
# zoom map to saved extent
ax.axis(axis_extent)
except Exception: # noqa
except Exception: # noqa
logging.error("make_map: Error while making map")
return ax

Expand All @@ -104,7 +104,7 @@ def show_map(
for dist in dict_results_by_distance:
ax = plt.subplot(len_series_half, 2, i + 1)
ax = _make_map(
ax, # noqa
ax, # noqa
dict_results_by_distance[dist],
dict_thematic,
dict_reference,
Expand Down

0 comments on commit a58fcbf

Please sign in to comment.