Eugene Tan

Results 2 issues of Eugene Tan

When I load a csv first into dask, and then into dask dataframe using .from_dask_dataframe, ._meta_nonempty does not exist, causing downstream problems in analysis (e.g. `with spatial_shuffle`). My hackish solution...

In [bw2io/importers/ecoinvent_lcia.py](https://github.com/brightway-lca/brightway2-io/blob/main/bw2io/importers/ecoinvent_lcia.py), lines 18-24. ``` class EcoinventLCIAImporter(LCIAImporter): def __init__(self, biosphere_database: str | None = None): ``` The `| None = None` format [isn't compatible](https://stackoverflow.com/questions/76712720/typeerror-unsupported-operand-types-for-type-and-nonetype) with Python versions = 3.8. Is...