Skip to content

Commit add4b5b

Browse files
committedMay 17, 2022
fix #46
1 parent 5377e24 commit add4b5b

File tree

1 file changed

+33
-3
lines changed

1 file changed

+33
-3
lines changed
 

‎src/exceptionite/solutions.py

+33-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ def get(cls):
1717
UnsupportedOperand(),
1818
DivisionByZeroError(),
1919
GetAttributeObject(),
20+
ModuleHasNoAttribute(),
21+
ModuleNotCallable(),
2022
NoModuleNamed(),
2123
Syntax(),
2224
ImportIssue(),
@@ -100,7 +102,7 @@ def description(self):
100102
)
101103

102104
def regex(self):
103-
return r"^class \'(?P<class>([\w]*))\' has no attribute (?P<method>(\w+))"
105+
return r"^class \'(?P<class>([\w]*))\' has no attribute (?P<method>(\w+))"
104106

105107

106108
class ClassModelMethodExists:
@@ -407,6 +409,34 @@ def regex(self):
407409
return r"^'(?P<object>(\w+))' object has no attribute '(?P<attribute>(\w+))'"
408410

409411

412+
class ModuleHasNoAttribute:
413+
def title(self):
414+
return "Check Class Import"
415+
416+
def description(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+
def regex(self):
423+
return r"^module '(?P<module>(\w.+))' has no attribute 'find_or_fail'"
424+
425+
426+
class ModuleNotCallable:
427+
def title(self):
428+
return "Check Class Import"
429+
430+
def description(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+
def regex(self):
437+
return r"'module' object is not callable"
438+
439+
410440
class NoModuleNamed:
411441
def title(self):
412442
return "Module Not Found Error"
@@ -415,7 +445,7 @@ def description(self):
415445
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."
416446

417447
def regex(self):
418-
return r"No module named '(?P<module>(\w+))'"
448+
return r"No module named '(?P<module>(\w.+))'"
419449

420450

421451
class Syntax:
@@ -487,7 +517,7 @@ def title(self):
487517

488518
def description(self):
489519
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. "
491521
"Once an object is instantiated it cannot be called directly anymore. "
492522
"Check if the ':object' is instantiated already."
493523
)

0 commit comments

Comments
 (0)