Skip to content

Commit a132d7c

Browse files
committed
lint
1 parent c0c449e commit a132d7c

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

packages/bigquery-magics/noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,9 @@ def install_unittest_dependencies(session, *constraints):
228228
def unit(session):
229229
# Install all test dependencies, then install this package in-place.
230230
if session.python == "3.15":
231-
session.skip("Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas")
231+
session.skip(
232+
"Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas"
233+
)
232234

233235
constraints_path = str(
234236
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"

packages/pandas-gbq/noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,9 @@ def default(session):
244244
def unit(session):
245245
"""Run the unit test suite."""
246246
if session.python == "3.15":
247-
session.skip("Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas")
247+
session.skip(
248+
"Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas"
249+
)
248250

249251
default(session)
250252

0 commit comments

Comments
 (0)