Skip to content

dlorenc/SpellCheckedObject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Spell Checking for Python

For when spelling is hard

Usage

>>> from SpellCheckedObject import SpellCheckedObject
>>> class CantSpell(SpellCheckedObject):
        def test(self, x, y):
            return x + y
        @property
        def prop(self):
            return 7
>>> c = CantSpell()
>>> c.test(3, 4)
7
>>> c.testt(3, 4)
7

About

Spell Checking For Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages