Skip to content

Commit

Permalink
Issue #22: last fixes to imports and update to README.MD to reflect c…
Browse files Browse the repository at this point in the history
…urrent structure
  • Loading branch information
matthew-mizielinski committed Jan 23, 2025
1 parent 77fe75a commit 07c24eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion data_request_api/stable/content/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ These are:
-----------------

```python
import dreq_content as dc
import data_request_api.stable.content.dreq_api.dreq_content as dc

# Get the list of available versions
versions = dc.get_versions()
Expand Down
7 changes: 2 additions & 5 deletions data_request_api/stable/query/dreq_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,9 @@
import json
from collections import OrderedDict

# from importlib import reload
# import dreq_classes
# reload(dreq_classes)

from .dreq_classes import dreq_table, expt_request, UNIQUE_VAR_NAME, PRIORITY_LEVELS
#from dreq_classes import dreq_table, expt_request, UNIQUE_VAR_NAME, PRIORITY_LEVELS
from data_request_api.stable.query.dreq_classes import (
dreq_table, expt_request, UNIQUE_VAR_NAME, PRIORITY_LEVELS)

DREQ_VERSION = '' # if a tagged version is being used, set this in calling script

Expand Down

0 comments on commit 07c24eb

Please sign in to comment.