Skip to content

Commit 9dda743

Browse files
committed
Minor fixes
1 parent e58c546 commit 9dda743

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

.github/workflows/cartoframes-ci.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,12 @@ jobs:
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

29-
- run: echo "Installing dependencies"
30-
- name: Install dependencies (pip)
31-
run: python -m pip install --upgrade pip
32-
- name: Install dependencies (pandas)
33-
run: pip install pandas
34-
- name: Install dependencies (tox)
35-
run: pip install tox
36-
- name: Install dependencies (tox-gh-actions)
37-
run: pip install tox-gh-actions
38-
- run: echo "Dependencies installed"
29+
- name: Install dependencies
30+
run: |
31+
python -m pip install --upgrade pip
32+
pip install tox
33+
pip install tox-gh-actions
34+
3935
- name: Test with tox
4036
run: |
4137
tox

cartoframes/data/observatory/catalog/dataset.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,8 +500,9 @@ def subscribe(self, credentials=None):
500500

501501
@check_do_enabled
502502
def subscription_info(self, credentials=None):
503-
"""Get the subscription information of a Dataset, which includes the license, Terms of Service, rights, price, and
504-
estimated time of delivery, among other metadata of interest during the :py:attr:`Dataset.subscription` process.
503+
"""Get the subscription information of a Dataset, which includes the license, Terms of Service, rights, price,
504+
and estimated time of delivery, among other metadata of interest during the :py:attr:`Dataset.subscription`
505+
process.
505506
506507
Args:
507508
credentials (:py:class:`Credentials <cartoframes.auth.Credentials>`, optional):

cartoframes/io/managers/context_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def has_table(self, table_name, schema=None):
168168
def delete_table(self, table_name):
169169
query = _drop_table_query(table_name)
170170
output = self.execute_query(query)
171-
return not('notices' in output and 'does not exist' in output['notices'][0])
171+
return not ('notices' in output and 'does not exist' in output['notices'][0])
172172

173173
def _delete_function(self, function_name):
174174
query = _drop_function_query(function_name)

0 commit comments

Comments
 (0)