Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascr91 committed Jan 29, 2022
1 parent e2b0592 commit cfea6c0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion python-package/basedosdados/download/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def search(query, order_by):
# first loop identify the number of the tables in each datasets
for dataset in json_response["result"]["datasets"]:
tables_dfs = []
n_tables = len(dataset["resources"])
len(dataset["resources"])
# second loop extracts tables' information for each dataset
for table in dataset["resources"]:
data_table = pd.DataFrame(
Expand Down
1 change: 0 additions & 1 deletion python-package/tests/test_download/test_metadata.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from os import read
import pytest
from pathlib import Path
import pandas as pd
Expand Down

0 comments on commit cfea6c0

Please sign in to comment.