Skip to content

Commit

Permalink
Fix trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Pabloo22 committed Mar 2, 2024
1 parent 39f77b2 commit cbe5bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion job_shop_lib/visualization/gantt_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _configure_axes(schedule: Schedule, ax: plt.Axes, xlim: Optional[int]):
xlim = xlim if xlim is not None else makespan + 1
ax.set_xlim(0, xlim)

tick_interval = max(1, makespan // 10)
tick_interval = max(1, makespan // 10)
xticks = list(range(0, makespan + 1, tick_interval))

if xticks[-1] != makespan:
Expand Down

0 comments on commit cbe5bd3

Please sign in to comment.