Blake Stovall
Blake Stovall
I'm having the same issue. Compiles fine, then gives the error when run via spark-submit. Nothing passed into spark-submit besides the jar file: spark-submit /path/to/jar/application.jar
I believe I tried that initially to no avail. There's no way for me to retest it at this point.
I looked in the app repo to see if there was already an issue there but not this repo obv so sorry if it's a dupe!
Changing line 893 in pyfolio/timeseries.py from: ``` valley = np.argmin(underwater) # end of the period ``` to: ``` valley = underwater.idxmin() # end of the period ``` appears to fix...
> Looks good! I can confirm the animations are still working. > > Just one type suggestion then ready to merge. > > > NOTE: I wanted to be able...
Will get to the requested changes later this evening!
> `token()` is for using inside the `style` prop. For `cva` and `css`, you can use ` '...{durations.tokenName} ...'` directly, and if the property only consists of `'{duration.tokenName}'`, you can...
> To narrow it down, I guess what was most relevant here was mocking, and how it can add complexity if we're not careful. The `isE2E` would allow for easy...
@trevinhofmann @raineorshine It appears that all tests that rely on calling `initialize()` are skipped; I assume because they are failing. I'm still getting up to speed on the architecture, so...
@raineorshine a couple of questions on this. 1. Do the CSSTransition React components need any modification under this issue? 2. Is there a better way to identify the particular locations...