Skip to content

Commit 7985085

Browse files
committed
remove debug print statements
1 parent db2dcf2 commit 7985085

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

tifeatures/filter/filters.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ def attribute(name: str, fields: List[str]) -> V:
275275
if name in fields:
276276
return V(name)
277277
else:
278-
print(name, fields)
279278
raise TypeError(f"Field {name} not in table.")
280279

281280

tifeatures/layer.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,6 @@ async def query(
336336
simplify: Optional[float] = None,
337337
) -> Tuple[FeatureCollection, int]:
338338
"""Build and run Pg query."""
339-
print("id", self.id_column)
340339
if geom and geom.lower() != "none" and not self.geometry_column(geom):
341340
raise InvalidGeometryColumnName(f"Invalid Geometry Column: {geom}.")
342341

@@ -394,7 +393,6 @@ async def query(
394393
),
395394
geom_columns=[g.name for g in self.geometry_columns],
396395
)
397-
print(q, p)
398396
async with pool.acquire() as conn:
399397
items = await conn.fetchval(q, *p)
400398

0 commit comments

Comments
 (0)