You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/exceptionite/solutions.py
+33-3
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,8 @@ def get(cls):
17
17
UnsupportedOperand(),
18
18
DivisionByZeroError(),
19
19
GetAttributeObject(),
20
+
ModuleHasNoAttribute(),
21
+
ModuleNotCallable(),
20
22
NoModuleNamed(),
21
23
Syntax(),
22
24
ImportIssue(),
@@ -100,7 +102,7 @@ def description(self):
100
102
)
101
103
102
104
defregex(self):
103
-
returnr"^class \'(?P<class>([\w]*))\' has no attribute (?P<method>(\w+))"
105
+
returnr"^class \'(?P<class>([\w]*))\' has no attribute (?P<method>(\w+))"
104
106
105
107
106
108
classClassModelMethodExists:
@@ -407,6 +409,34 @@ def regex(self):
407
409
returnr"^'(?P<object>(\w+))' object has no attribute '(?P<attribute>(\w+))'"
408
410
409
411
412
+
classModuleHasNoAttribute:
413
+
deftitle(self):
414
+
return"Check Class Import"
415
+
416
+
defdescription(self):
417
+
return"""You might have expected to import the class when doing 'from :module import ...' but instead you have imported the module causing this AttributeError exception.
418
+
419
+
Please check that the python module exports the class you want (e.g. through a __init__.py file) else you can write the import "from my.module.MyClass import MyClass"
420
+
"""
421
+
422
+
defregex(self):
423
+
returnr"^module '(?P<module>(\w.+))' has no attribute 'find_or_fail'"
424
+
425
+
426
+
classModuleNotCallable:
427
+
deftitle(self):
428
+
return"Check Class Import"
429
+
430
+
defdescription(self):
431
+
return"""You might have expected to import the class when doing 'from :module import ...' but instead you have imported the module causing this TypeError exception when trying to instantiate the class.
432
+
433
+
Please check that the python module exports the class you want (e.g. through a __init__.py file) else you can write the import "from my.module.MyClass import MyClass"
434
+
"""
435
+
436
+
defregex(self):
437
+
returnr"'module' object is not callable"
438
+
439
+
410
440
classNoModuleNamed:
411
441
deftitle(self):
412
442
return"Module Not Found Error"
@@ -415,7 +445,7 @@ def description(self):
415
445
return"This is an import error. Check the file where you imported the ': module' module. Make sure its spelled right and make sure you pip installed this module correctly if this is supposed to come from a PYPI package."
416
446
417
447
defregex(self):
418
-
returnr"No module named '(?P<module>(\w+))'"
448
+
returnr"No module named '(?P<module>(\w.+))'"
419
449
420
450
421
451
classSyntax:
@@ -487,7 +517,7 @@ def title(self):
487
517
488
518
defdescription(self):
489
519
return (
490
-
"You cannot call objects. The ':object' object has already been instiatiated. "
520
+
"You cannot call objects. The ':object' object has already been instantiated. "
491
521
"Once an object is instantiated it cannot be called directly anymore. "
0 commit comments