-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
REF: implement _shared_docs to de-circularize dependencies #34837
Conversation
nice idea - can you merge master? |
master merged; are the mypy complaints here real or ignorable? |
Not sure on first glance; haven’t seen that before. @simonjayhawkins any idea?
…Sent from my iPad
On Jun 18, 2020, at 6:02 PM, jbrockmendel ***@***.***> wrote:
master merged; are the mypy complaints here real or ignorable?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
This is weird... with the change
it appears mypy assumes __init__ always raises and does not process the rest of __init__ and the attributes are not defined. This doesn't seem right. maybe mypy bug with combination of objs, ABCSeries and ABCDataFrame being Any. adding type annotation for obj seems to fix. |
can you merge master again. I think this module as |
updated+green |
ex merge conflict this lgtm |
great. you might want to create an issue and mark as good first so folks can move shared docs to the new location. |
A side effect of this is that a bunch of pd.concat imports can be done at import-time instead of at runtime, will do this in a separate pass.