phone-number: fix ImportError in slug file (#2152)

Template was created and renamed the class Phone to PhoneNumber... the example.py was already updated, but the slug file was overlooked.

Fixes #2151
This commit is contained in:
Michael Morehouse
2019-12-24 21:53:11 +00:00
committed by GitHub
parent 36c2df7c85
commit c1812833ec

View File

@@ -1,3 +1,3 @@
class Phone:
def __init__(self, phone_number):
class PhoneNumber:
def __init__(self, number):
pass