Overall straightening of the source code.#117
Overall straightening of the source code.#117sdc50 merged 23 commits intoerdc:masterfrom AaronV77:Clean-Up
Conversation
quest/plugins/user_provider.py
Outdated
| catalog_id, x1, y1, x2, y2 = line.split() | ||
| properties = {} | ||
| polys.append(Feature(geometry=util.bbox2poly(x1, y1, x2, y2, as_geojson=True), properties=properties, id=catalog_id)) | ||
| polys.append(Feature(geometry=bbox2poly(x1, y1, x2, y2, as_geojson=True), properties=properties, id=catalog_id)) |
There was a problem hiding this comment.
E501 line too long (140 > 120 characters)
quest/plugins/user_provider.py
Outdated
| catalog_id = catalog_id.split('.')[0] | ||
| properties = {} | ||
| polys.append(Feature(geometry=util.bbox2poly(x1, y1, x2, y2, as_geojson=True), properties=properties, id=catalog_id)) | ||
| polys.append(Feature(geometry=bbox2poly(x1, y1, x2, y2, as_geojson=True), properties=properties, id=catalog_id)) |
There was a problem hiding this comment.
E501 line too long (140 > 120 characters)
quest/plugins/base/service_base.py
Outdated
| zip_path = os.path.join(path, 'zip', filename) | ||
| ulmo.util.download_if_new(url, zip_path, check_modified=check_modified) | ||
| util.logger.info('... ... zipfile saved at %s' % zip_path) | ||
| logger.info('... ... zipfile saved at %s' % zip_path) |
| stitched_image.paste(im=incoming_image, box=(x_pixel, y_pixel)) | ||
| incoming_image.close() | ||
| counter += 1 | ||
| print("Number of tiles printed: " + str(counter), end='\r') |
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
| "fill_dataset = quest.tools.wbt_fill_depressions(\n", | ||
| " dataset=elevation_raster,\n", | ||
| ")['datasets'][0]\n", | ||
| "fill_dataset = quest.tools.wbt_fill_depressions(dataset=elevation_raster)['datasets'][0]\n", |
There was a problem hiding this comment.
I thought this was more readable the other way.
There was a problem hiding this comment.
This notebook at the time was failing for me and I was trying to get it to work on my system.
quest/api/datasets.py
Outdated
| title = dataset | ||
|
|
||
| if 'timeseries' in file_format: | ||
| if static.DataType.TIMESERIES in file_format: |
There was a problem hiding this comment.
This shouldn't be DataType since datatype and file_format are distinct in the database. We may need to create a new static enum for file_format.
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
Yes, at the time it was and I just never uncommented it.
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/test_util_misc.py
Outdated
|
|
||
| def test_get_cache_data_dir(reset_projects_dir): | ||
| assert quest.util.get_cache_dir() == os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) | ||
| part_1 = quest.util.get_cache_dir() |
There was a problem hiding this comment.
F841 local variable 'part_1' is assigned to but never used
test/test_util_misc.py
Outdated
| def test_get_cache_data_dir(reset_projects_dir): | ||
| assert quest.util.get_cache_dir() == os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) | ||
| part_1 = quest.util.get_cache_dir() | ||
| part_2 = os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) |
There was a problem hiding this comment.
F841 local variable 'part_2' is assigned to but never used
| assert quest.util.get_cache_dir() == os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) | ||
| part_1 = quest.util.get_cache_dir() | ||
| part_2 = os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) | ||
| assert actual == expected |
There was a problem hiding this comment.
F821 undefined name 'actual'
F821 undefined name 'expected'
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/test_util_misc.py
Outdated
|
|
||
| def test_get_cache_data_dir(reset_projects_dir): | ||
| assert quest.util.get_cache_dir() == os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) | ||
| part_1 = quest.util.get_cache_dir() |
There was a problem hiding this comment.
F841 local variable 'part_1' is assigned to but never used
| assert quest.util.get_cache_dir() == os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) | ||
| part_1 = quest.util.get_cache_dir() | ||
| expected = os.path.join(reset_projects_dir['BASE_DIR'], os.path.join('.cache', 'test_cache')) | ||
| assert actual == expected |
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | |
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
quest/api/datasets.py
Outdated
| title = dataset | ||
|
|
||
| if 'timeseries' in file_format: | ||
| if static.DataType.TIMESERIES in file_format: |
There was a problem hiding this comment.
| if static.DataType.TIMESERIES in file_format: | |
| if 'timeseries' in file_format: |
test/data.py
Outdated
| ('svc://usgs-nlcd:2011/5a1c31abe4b09fc93dd6381c', None), | ||
| ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| ('svc://usgs-nwis:iv/01010000', {'parameter': 'gage_height', 'start': '2016-01-01', 'end': '2016-01-02'}), | ||
| # ('svc://usgs-nwis:dv/01010000', {'parameter': 'streamflow:mean:daily', 'start': '2016-01-01', 'end': '2016-01-02'}), |
There was a problem hiding this comment.
E501 line too long (122 > 120 characters)
| width = number_of_x_tiles * TILE_SIZE | ||
| full_image = None | ||
|
|
||
| counter = 0 |
There was a problem hiding this comment.
F841 local variable 'counter' is assigned to but never used
Co-Authored-By: AaronV77 <AaronV77@users.noreply.github.com>
| from .metadata import get_metadata | ||
| from .tasks import add_async | ||
| from ..util import to_geojson | ||
| from ..static import UriType, PluginType |
There was a problem hiding this comment.
F401 '..static.UriType' imported but unused
| from ..database import get_db, db_session | ||
| from ..static import DatasetStatus | ||
| from ..util import logger as log | ||
| from ..static import DatasetStatus, UriType |
There was a problem hiding this comment.
F401 '..static.UriType' imported but unused
|
|
||
| from ...static import DatasetStatus, DatasetSource | ||
| from ...util import listify, format_json_options, uuid | ||
| from ...static import DatasetStatus, DatasetSource, UriType |
There was a problem hiding this comment.
F401 '...static.UriType' imported but unused
| from io import StringIO | ||
| from geojson import Feature, FeatureCollection | ||
|
|
||
| from ..static import UriType |
There was a problem hiding this comment.
F401 '..static.UriType' imported but unused
| import numpy as np | ||
|
|
||
| from quest.plugins import IoBase | ||
| from quest.static import DataType |
There was a problem hiding this comment.
F401 'quest.static.DataType' imported but unused
|
|
||
| from quest import util | ||
| from quest.plugins import ToolBase | ||
| from quest.static import DataType, UriType |
There was a problem hiding this comment.
F401 'quest.static.UriType' imported but unused
| import param | ||
| from quest import util | ||
| from quest.plugins import ToolBase | ||
| from quest.static import DataType, UriType |
There was a problem hiding this comment.
F401 'quest.static.UriType' imported but unused
| from quest.api import get_metadata | ||
| from quest import util | ||
| from quest.plugins import load_plugins | ||
| from quest.static import UriType, DataType |
There was a problem hiding this comment.
F401 'quest.static.UriType' imported but unused
| from quest.api import get_metadata | ||
| from quest import util | ||
| from quest.util import setattr_on_dataframe | ||
| from quest.static import DataType, UriType |
There was a problem hiding this comment.
F401 'quest.static.UriType' imported but unused
| from quest.plugins import ToolBase | ||
| from quest import util | ||
| from quest.plugins import ToolBase | ||
| from quest.static import DataType, UriType, GeomType |
There was a problem hiding this comment.
F401 'quest.static.UriType' imported but unused
* Added use of enums where relevant * Re-ordered import statements
Uh oh!
There was an error while loading. Please reload this page.