Skip to content

Commit 7118cb1

Browse files
committed
-
1 parent c81bbf0 commit 7118cb1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source_py3/python_toolbox/misc_tools/misc_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def is_type(thing):
258258
return isinstance(thing, type)
259259

260260

261-
class NonInstatiable:
261+
class NonInstantiable:
262262
'''
263263
Class that can't be instatiated.
264264

source_py3/test_python_toolbox/test_misc_tools/test_non_instantiable.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
from python_toolbox import cute_testing
55

6-
from python_toolbox.misc_tools import NonInstatiable
6+
from python_toolbox.misc_tools import NonInstantiable
77

88

99
def test():
10-
class MyNonInstatiable(NonInstatiable):
10+
class MyNonInstantiable(NonInstantiable):
1111
pass
1212

1313
with cute_testing.RaiseAssertor(exception_type=RuntimeError):
14-
MyNonInstatiable()
14+
MyNonInstantiable()

0 commit comments

Comments
 (0)