Skip to content

Commit

Permalink
fix import in notebook (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Epstein authored Nov 4, 2022
1 parent 780bcc1 commit cc6a038
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dataquality/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
"dataquality"

__version__ = "v0.7.3"
__version__ = "v0.7.4"

import os
import resource

import dataquality.core._config
import dataquality.integrations
from dataquality.analytics import Analytics
from dataquality.clients.api import ApiClient

# We try/catch this in case the user installed dq inside of jupyter. You need to
# restart the kernel after the install and we want to make that clear. This is because
# of vaex: https://github.com/vaexio/vaex/pull/2226
try:
import dataquality.metrics
from dataquality.analytics import Analytics
from dataquality.clients.api import ApiClient
except (FileNotFoundError, AttributeError):
raise Exception(
"It looks like you've installed dataquality from a notebook. "
Expand Down

0 comments on commit cc6a038

Please sign in to comment.