Skip to content

Commit

Permalink
use tqdm auto
Browse files Browse the repository at this point in the history
  • Loading branch information
rwood-97 committed Sep 17, 2024
1 parent 2651e3d commit 55bd215
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mapreader/download/sheet_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import matplotlib.pyplot as plt
import pandas as pd
from shapely.geometry import LineString, Point, Polygon
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm

from mapreader.utils.load_frames import load_from_geojson

Expand Down
2 changes: 1 addition & 1 deletion mapreader/download/tile_loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import urllib.request

from joblib import Parallel, delayed
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm

from .data_structures import GridBoundingBox, GridIndex

Expand Down
2 changes: 1 addition & 1 deletion mapreader/download/tile_merging.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os

from PIL import Image
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm

from .data_structures import GridBoundingBox, GridIndex
from .tile_loading import DEFAULT_IMG_DOWNLOAD_FORMAT, DEFAULT_TEMP_FOLDER
Expand Down
2 changes: 1 addition & 1 deletion mapreader/load/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from pyproj import Transformer
from rasterio.plot import reshape_as_raster
from shapely.geometry import box
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm

from mapreader.download.data_structures import GridBoundingBox, GridIndex
from mapreader.download.downloader_utils import get_polygon_from_grid_bb
Expand Down
2 changes: 1 addition & 1 deletion mapreader/process/context_post_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import geopandas as gpd
import pandas as pd
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm

from mapreader.utils.load_frames import load_from_csv, load_from_geojson

Expand Down
2 changes: 1 addition & 1 deletion mapreader/process/occlusion_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from PIL import Image
from torch import nn
from torchvision import transforms
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm

from mapreader.utils.load_frames import load_from_csv, load_from_geojson

Expand Down
2 changes: 1 addition & 1 deletion mapreader/spot_text/runner_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import pandas as pd
from PIL import Image
from shapely import Polygon
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm

from mapreader.utils.load_frames import load_from_csv, load_from_geojson

Expand Down

0 comments on commit 55bd215

Please sign in to comment.