Skip to content

Commit

Permalink
Adding try/except block so that autodoc works correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
slightlynybbled committed May 1, 2018
1 parent cd513df commit 319a69e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tk_tools/groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
from collections import OrderedDict

import xlrd
from tk_tools.images import minus

try:
from tk_tools.images import minus
except ImportError:
minus = ''


class Grid(ttk.Frame):
Expand Down

0 comments on commit 319a69e

Please sign in to comment.