mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-27 02:52:53 -04:00
fix 2.5 failure
This commit is contained in:
@@ -32,10 +32,10 @@ class TestEvents(fixtures.TestBase):
|
||||
class SomeFoo(TestFixture):
|
||||
pass
|
||||
|
||||
@inspection._inspects(SomeFoo)
|
||||
class SomeFooInspect(object):
|
||||
def __init__(self, target):
|
||||
self.target = target
|
||||
SomeFooInspect = inspection._inspects(SomeFoo)(SomeFooInspect)
|
||||
|
||||
somefoo = SomeFoo()
|
||||
insp = inspect(somefoo)
|
||||
|
||||
Reference in New Issue
Block a user