Skip to content

Commit 456c5a7

Browse files
committed
black
1 parent 3c78b07 commit 456c5a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pysimplesql/pysimplesql.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7852,7 +7852,7 @@ def relationships(self):
78527852

78537853
def max_pk(self, table: str, pk_column: str) -> int:
78547854
rows = self.execute(f"SELECT MAX({pk_column}) as max_pk FROM {table}")
7855-
7855+
78567856
for _, row in rows.iterrows():
78577857
return row["MAX_PK"] # returned as upper case
78587858

0 commit comments

Comments
 (0)