3 Commits

Author SHA1 Message Date
dependabot[bot]
07e05139cf ci(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-15 06:22:48 +00:00
Xuwznln
5d97015c01 Merge pull request #8 from Shaobin-Jiang/main
fix incorrect default value for --debug flag
2025-11-02 21:09:18 +08:00
Shaobin-Jiang
0b5853a1e2 fix incorrect default value for --debug flag 2025-10-09 15:09:11 +08:00
3 changed files with 4 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ jobs:
python-version: "3.10"
- name: Cache pip dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ubuntu-pip-3.10-${{ hashFiles('**/pyproject.toml') }}
@@ -156,7 +156,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Cache pip dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}

View File

@@ -61,7 +61,7 @@ jobs:
python-version: "3.10"
- name: Cache pip dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ubuntu-pip-3.10-${{ hashFiles('**/pyproject.toml') }}

View File

@@ -1145,7 +1145,7 @@ def main() -> None:
parser = argparse.ArgumentParser(description="Elevator Simulation Server (Async)")
parser.add_argument("--host", default="127.0.0.1", help="Server host")
parser.add_argument("--port", type=int, default=8000, help="Server port")
parser.add_argument("--debug", default=True, action="store_true", help="Enable debug logging")
parser.add_argument("--debug", default=False, action="store_true", help="Enable debug logging")
args = parser.parse_args()