Skip to content

Commit 3a8c5b7

Browse files
committed
Format and remove unused variable
1 parent baf9027 commit 3a8c5b7

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

polypheny/__init__.py

Lines changed: 0 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)