Skip to content

Commit daea8a9

Browse files
committed
style fixes
1 parent 49cdce0 commit daea8a9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

examples/query-service/basic_example.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def main():
2626

2727
pool.execute_with_retries("INSERT INTO example (key, value) VALUES (1, 'onepieceisreal');")
2828

29-
3029
def callee(session):
3130
print("=" * 50)
3231
for _ in session.execute("""delete from example;"""):

ydb/query/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def wrapped_callee():
117117
return next_opt.result
118118

119119
def execute_with_retries(
120-
self, query: str, ddl: bool = False, retry_settings: RetrySettings = None, *args, **kwargs
120+
self, query: str, ddl: bool = False, retry_settings: RetrySettings = None, *args, **kwargs
121121
):
122122
retry_settings = RetrySettings() if retry_settings is None else retry_settings
123123
with self.checkout() as session:

0 commit comments

Comments
 (0)