Skip to content

Commit 3a8c5b7

Browse files
committedJan 29, 2025·
Format and remove unused variable
1 parent baf9027 commit 3a8c5b7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎polypheny/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def Binary(string):
6464
# ROWID = 5
6565

6666

67-
6867
def connect(address: Union[tuple[str, int], str] = None, *, username: str = None, password: str = None,
6968
transport: str = None, **kwargs) -> Connection:
7069
"""

‎polypheny/rpc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def close(self):
9797
return
9898
try:
9999
self.disconnect()
100-
except Exception as e:
100+
except Exception:
101101
pass
102102

103103
try:

0 commit comments

Comments
 (0)
Please sign in to comment.