Skip to content

Commit

Permalink
Merge 7384fe6 into 73b0315
Browse files Browse the repository at this point in the history
  • Loading branch information
oleurud committed Oct 14, 2019
2 parents 73b0315 + 7384fe6 commit d6f971d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cartoframes/data/dataset/dataset_info.py
Expand Up @@ -9,6 +9,9 @@
from ...utils.geom_utils import setting_value_exception
from ...utils.columns import normalize_name

from warnings import filterwarnings
filterwarnings("ignore", category=FutureWarning, module="carto")


class DatasetInfo(object):
PRIVACY_PRIVATE = 'PRIVATE'
Expand Down
3 changes: 3 additions & 0 deletions cartoframes/utils/table.py
Expand Up @@ -5,6 +5,9 @@
from ..auth import get_default_credentials
from ..__version__ import __version__

from warnings import filterwarnings
filterwarnings("ignore", category=FutureWarning, module="carto")


def tables(credentials=None):
"""List all tables in user's CARTO account
Expand Down

0 comments on commit d6f971d

Please sign in to comment.