Skip to content

Commit

Permalink
Fix duplication argument in method call.
Browse files Browse the repository at this point in the history
  • Loading branch information
doerwalter committed Jan 10, 2022
1 parent 92fb78c commit 2b1552e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ll/orasql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ def object_named(self, name, owner=None):

# For backwards compatibility
def getobject(self, name, owner=None):
return self.object_named(self, name, owner=None)
return self.object_named(name, owner=None)


def connect(*args, **kwargs):
Expand Down

0 comments on commit 2b1552e

Please sign in to comment.