We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a78a6cf commit 063968aCopy full SHA for 063968a
laceworksdk/api/v2/events.py
@@ -4,7 +4,8 @@
4
"""
5
6
from laceworksdk.api.search_endpoint import SearchEndpoint
7
-from laceworksdk.api.v1.events import EventsAPIv1
+from laceworksdk.api.v1.events import EventsAPIv1
8
+
9
10
class EventsAPIv2(EventsAPIv1, SearchEndpoint):
11
@@ -20,5 +21,4 @@ def __init__(self, session):
20
21
# The need to pass "Events" into the v1 init() is tied
22
# to the super() call within the v1 init()
23
super(EventsAPIv1, self).__init__(session, "Events")
-
24
- super(SearchEndpoint, self).__init__(session, "Events")
+ super(SearchEndpoint, self).__init__(session, "Events")
0 commit comments