Skip to content

Commit

Permalink
style(init): Ignore logging VTK because of complicated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Oct 2, 2024
1 parent 9608c4d commit c8baaca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ladybug/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
try:
extensions[name] = importlib.import_module(name)
except Exception:
if (sys.version_info >= (3, 0)):
if (sys.version_info >= (3, 0)) and name != 'ladybug_vtk':
logger.exception('Failed to import {0}!'.format(name))
else:
logger.info('Successfully imported Ladybug plugin: {}'.format(name))

0 comments on commit c8baaca

Please sign in to comment.