Skip to content

Commit c181283

Browse files
authored
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
1 parent 36c2df7 commit c181283

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
class Phone:
2-
def __init__(self, phone_number):
1+
class PhoneNumber:
2+
def __init__(self, number):
33
pass

0 commit comments

Comments
 (0)