Skip to content

Commit

Permalink
Format #1055
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Coetzee <[email protected]>
  • Loading branch information
Pipboyguy committed Mar 11, 2024
1 parent 0407ab8 commit d503c14
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ def parse_native_representation(self, native_value: Any) -> None:
# Query may be immutable so make it mutable.
self.query = dict(self.query)
except Exception as e:
raise InvalidConnectionString(
self.__class__, native_value, self.drivername
) from e
raise InvalidConnectionString(self.__class__, native_value, self.drivername) from e

def on_resolved(self) -> None:
if self.password:
Expand Down

0 comments on commit d503c14

Please sign in to comment.