Skip to content

Commit b6133fc

Browse files
authored
Updated PythOwO.py UwU
1 parent 14decdf commit b6133fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pythowo.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,28 +43,28 @@ def as_string(self):
4343
class IllegalCharError(Error):
4444
def __init__(self, pos_start, pos_end, details):
4545
super().__init__(
46-
pos_start, pos_end, "OwO, whats this? Iwwegaw Chawacter? Oh nyo! ", details
46+
pos_start, pos_end, "OwO, what's this? Iwwegaw Chawacter? Oh nyo! ", details
4747
)
4848

4949

5050
class ExpectedCharError(Error):
5151
def __init__(self, pos_start, pos_end, details):
5252
super().__init__(
53-
pos_start, pos_end, "OwO, whats this? Expected Chawacter? Oh nyo! ", details
53+
pos_start, pos_end, "OwO, what's this? Expected Chawacter? Oh nyo! ", details
5454
)
5555

5656

5757
class InvalidSyntaxError(Error):
5858
def __init__(self, pos_start, pos_end, details=""):
5959
super().__init__(
60-
pos_start, pos_end, "OwO, whats this? Invawid Syntax? Oh nyo! ", details
60+
pos_start, pos_end, "OwO, what's this? Invawid Syntax? Oh nyo! ", details
6161
)
6262

6363

6464
class RTError(Error):
6565
def __init__(self, pos_start, pos_end, details, context):
6666
super().__init__(
67-
pos_start, pos_end, "OwO, whats this? Ruwntime Error? Oh nyo! ", details
67+
pos_start, pos_end, "OwO, what's this? Ruwntime Error? Oh nyo! ", details
6868
)
6969
self.context = context
7070

0 commit comments

Comments
 (0)