Skip to content

Commit 063968a

Browse files
authored
chore: linting corrections for the EventsAPIv2 (#83)
1 parent a78a6cf commit 063968a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

laceworksdk/api/v2/events.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"""
55

66
from laceworksdk.api.search_endpoint import SearchEndpoint
7-
from laceworksdk.api.v1.events import EventsAPIv1
7+
from laceworksdk.api.v1.events import EventsAPIv1
8+
89

910
class EventsAPIv2(EventsAPIv1, SearchEndpoint):
1011

@@ -20,5 +21,4 @@ def __init__(self, session):
2021
# The need to pass "Events" into the v1 init() is tied
2122
# to the super() call within the v1 init()
2223
super(EventsAPIv1, self).__init__(session, "Events")
23-
24-
super(SearchEndpoint, self).__init__(session, "Events")
24+
super(SearchEndpoint, self).__init__(session, "Events")

0 commit comments

Comments
 (0)