Closed schroedk closed 3 years ago
@schroedk
Btw, I glanced over the recent changes on develop and noticed that after your changes in cache_azure, the docstring of
AzureLazyBatchCommitTable
is no longer correct. If you want, you could add the fix to this PR (or directly to develop, of course)
@schroedk Btw, I glanced over the recent changes on develop and noticed that after your changes in cache_azure, the docstring of
AzureLazyBatchCommitTable
is no longer correct. If you want, you could add the fix to this PR (or directly to develop, of course)
@MischaPanch Could you please explain this in more detail? :)
@schroedk Btw, I glanced over the recent changes on develop and noticed that after your changes in cache_azure, the docstring of
AzureLazyBatchCommitTable
is no longer correct. If you want, you could add the fix to this PR (or directly to develop, of course)@MischaPanch Could you please explain this in more detail? :)
Here the class docstring
"""
Wrapper for an Azure table, which allow for convenient insertion via lazy batch execution per partition.
Uses a priority queue to manage order of partitions to be committed.
To execute insertions, call :func:LazyBatchCommitTable.commit
"""
The last sentence is wrong - the class has a different name and there is no method called "commit". Also allow->allows in the first sentence
@schroedk Btw, I glanced over the recent changes on develop and noticed that after your changes in cache_azure, the docstring of
AzureLazyBatchCommitTable
is no longer correct. If you want, you could add the fix to this PR (or directly to develop, of course)@MischaPanch Could you please explain this in more detail? :)
Here the class docstring """ Wrapper for an Azure table, which allow for convenient insertion via lazy batch execution per partition. Uses a priority queue to manage order of partitions to be committed. To execute insertions, call :func:
LazyBatchCommitTable.commit
"""The last sentence is wrong - the class has a different name and there is no method called "commit". Also allow->allows in the first sentence
Thanks for pointing out, I will fix it on a different branch as it is used in a different project.
Introduce new package geoanalytics, in order to encapsulate functionality related to geopandas. Make geopandas an addtional dependency.