Skip to content

Commit

Permalink
try, except on pio chromium flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mbowcut2 committed Mar 20, 2024
1 parent 1597572 commit 9eef05d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CRISPResso2/CRISPRessoPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
import matplotlib.gridspec as gridspec
import plotly.express as px
import plotly.io as pio
pio.kaleido.scope.chromium_args += ('--single-process',)
try:
pio.kaleido.scope.chromium_args += ('--single-process',)
except:
pass
from collections import defaultdict
from copy import deepcopy
import re
Expand Down

0 comments on commit 9eef05d

Please sign in to comment.