Skip to content

Commit

Permalink
Issue #45 fix ruff linting issues in openeo_udp_cost_profiling/utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Oct 17, 2024
1 parent 1b8a5fb commit 1818175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openeo_udp_cost_profiling/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_job_cost_info(connection, job_id):
try:
job = connection.job(job_id).describe_job()
return float(job["costs"])
except:
except Exception:
return None


Expand Down Expand Up @@ -155,7 +155,7 @@ def plot_spatio_temporal_cost_profile(df):

# Plotting the heatmap using seaborn
plt.figure(figsize=(12, 8))
ax = sns.heatmap(
sns.heatmap(
job_cost_grid,
cmap=cmap,
norm=norm,
Expand Down

0 comments on commit 1818175

Please sign in to comment.