Skip to content

Commit 012ae66

Browse files
committed
Bump version to 1.0.11 in setup.py and fix import path in main.py
1 parent 1d63382 commit 012ae66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="nyc_infohub_excel_api_access",
5-
version="1.0.10",
5+
version="1.0.11",
66
author="Dylan Picart",
77
author_email="dylanpicart@mail.adelphi.edu",
88
description="A Python scraper for downloading Excel datasets from NYC InfoHub.",

src/excel_scraper/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
import asyncio
55
from logging.handlers import RotatingFileHandler
6-
from src.excel_scraper.scraper import NYCInfoHubScraper
6+
from .scraper import NYCInfoHubScraper
77

88
# Ensure stdout is line-buffered so logs appear in real time
99
sys.stdout.reconfigure(line_buffering=True)

0 commit comments

Comments
 (0)