3 Commits

Author SHA1 Message Date
dependabot[bot]
118ef81b45 ci(deps): bump actions/download-artifact from 5 to 7
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v5...v7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-15 06:22:51 +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
2 changed files with 4 additions and 4 deletions

View File

@@ -178,7 +178,7 @@ jobs:
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: release-dists
path: dist/
@@ -201,7 +201,7 @@ jobs:
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: release-dists
path: dist/
@@ -221,7 +221,7 @@ jobs:
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: release-dists
path: dist/

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()