Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
# below simply check the source code and fail if they find any files that need to be
# formatted. The code is not automatically reformatted like it is when running the
# pre-commit hooks.
- uses: psf/black@stable
- uses: psf/black@24.2.0
- uses: isort/isort-action@v1
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install deps
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,4 @@ cython_debug/
marimo/_static/
marimo/_lsp/
__marimo__/
.vscode/
6 changes: 4 additions & 2 deletions cwmscli/usgs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@ def ratingsinifileimport(filename, api_root, api_key, api_key_loc):
@click.option(
"-d",
"--days-back-modified",
default="2",
default=2,
type=int,
help="Days back from current time measurements have been modified in USGS database. Can be integer value",
)
@click.option(
"-c",
"--days-back-collected",
default="365",
default=365,
type=int,
help="Days back from current time measurements have been collected. Can be integer value",
)
@office_option
Expand Down