Job Evers

Results 17 issues of Job Evers

from ffprobe: ``` Duration: 00:30:00.07, start: 0.000000, bitrate: 20261 kb/s Stream #0:0(eng): Video: h264 (Baseline) (avc1 / 0x31637661), yuv420p, 1920x1080, 19998 kb/s, SAR 1:1 DAR 16:9, 29.98 fps, 30 tbr,...

When trying to read a file from an SFTP server, I'm getting an error saying `asyncssh.sftp.SFTPFailure: The message [] is not extractable!` ``` File "[...]//lib/python3.7/site-packages/fsspec/asyn.py", line 86, in wrapper return...

https://github.com/great-expectations/great_expectations/blob/develop/great_expectations/expectations/metrics/meta_metric_provider.py#L27 Turning on DeprecationWarnings like this overrides any settings we already have. Our current workaround is: ``` import warnings filters = list(warnings.filters) from great_expectations.data_context.types.base import DataContextConfig from great_expectations.data_context import BaseDataContext...

bug
triage
community
devrel

Let `M = 2315` (total number of possible answers) and `n = the size of bin for pattern n`. In the original version ``` P(Guess in 2) = 1/M *...

Running nose2 with `--fail-fast` and without the `--processes` flag works as expected. At the first failed test it stops. Adding in a `--processes 2` flag - it runs through the...

bug
backlog
plugin-mp

I'm curious if there is a reason to not include pre/post processors in the schema? Could add a few more lines after https://github.com/rconradharris/envparse/blob/master/envparse.py#L85: ``` if preprocessor is None: preprocessor =...

Adds a `--keep-useless-pass` argument to the CLI. Also had to change the behavior that replaces a removed import with `pass` to return None instead and filter out Nones

Running code like: ``` with fsspec.open(an_ftp_url) as fin: while True: buf = fin.read(16*1024) if not buf: break ``` raises a `error_temp: 426 Connection closed; transfer aborted.` here: https://github.com/fsspec/filesystem_spec/blob/62bb12e681b9e3dbd25df3991fd71552ea7654ee/fsspec/implementations/ftp.py#L314 The server...

Order is important with charting; avoid using dictionaries as they are un-ordered. A list of tuples would be better.

Following the example, given in the readme, I tried creating a stream that simply referenced a file on my harddrive: ``` const exampleFile = { createReadStream: function (opts) { //...