anselor
anselor
After a few hours of digging through what's happening with my documentation generation I finally tracked it down to this problem and then found this. Is there any work-around that...
Ok, so adding this hack to my conf.py seems to make NewTypes resolve and gets rid of all of the warnings referencing NewType definitions: ``` sphinx.ext.autodoc.NewTypeDataDocumenter.directivetype = 'class' ``` I've...
@AA-Turner Since it's the same type of issue, can TypeVar also be changed to be `py:class` instead of `py:data` in the next release?
I don't know the internals of how nox behaves, but a couple ideas to mind for me that could address some of the above concerns. My biggest concern is I...
This seems like something @kmvanbrunt would know best.
I'm sure I do I've just been busy with other more immediate deadlines and haven't had time to come back to this and other cmd2 stuff.
This could easily be turned into a mixin class
I'm going to look into doing a simple mixin for this or add an example, depending on what makes sense.
@phrrngtn I pushed up some initial structure of a rich mixin class for cmd2. Would you mind taking a look? My thought is the console.print() function can be called in...
It's a pretty minimal start that just took what you provided and puts it in a mixin. I've not used rich so I'm not really familiar with it but my...