Skip to content

Commit ad4de6c

Browse files
authored
Tidy up a misnamed function
1 parent 990554f commit ad4de6c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

REST_API_v2/Schedules/list_oncall_users.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
UNTIL = ''
3939

4040

41-
def list_overrides():
41+
def list_oncall_users():
4242
url = 'https://api.pagerduty.com/schedules/{id}/users'.format(
4343
id=SCHEDULE_ID
4444
)
@@ -56,4 +56,4 @@ def list_overrides():
5656
print(r.json())
5757

5858
if __name__ == '__main__':
59-
list_overrides()
59+
list_oncall_users()

0 commit comments

Comments
 (0)