Skip to content

Commit ce0d187

Browse files
committed
fixing pre-commit
1 parent fcc1a70 commit ce0d187

10 files changed

Lines changed: 526 additions & 630 deletions

File tree

.madsci/registry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"workcell_id": null
1616
}
1717
}
18-
}
18+
}

.pdm-python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/home/rpl/workspace/mir_module/.venv/bin/python
1+
/home/tginsburg/workspace/mir_module/.venv/bin/python

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.5.0
3+
rev: v6.0.0
44
hooks:
55
- id: check-yaml
66
- id: check-json
@@ -12,12 +12,12 @@ repos:
1212
- id: end-of-file-fixer
1313
- id: trailing-whitespace
1414
- repo: https://github.com/kynan/nbstripout
15-
rev: 0.7.1
15+
rev: 0.9.1
1616
hooks:
1717
- id: nbstripout
1818
- repo: https://github.com/astral-sh/ruff-pre-commit
1919
# Ruff version.
20-
rev: v0.3.0
20+
rev: v0.15.12
2121
hooks:
2222
# Run the linter.
2323
- id: ruff

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ RUN mkdir -p mir_module
1313
COPY ./src mir_module/src
1414
COPY ./README.md mir_module/README.md
1515
COPY ./pyproject.toml mir_module/pyproject.toml
16-
COPY ./tests mir_module/tests
1716

1817
RUN --mount=type=cache,target=/root/.cache \
1918
pip install -e ./mir_module

README.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,3 @@
33
## Overview
44

55
The 'mir_module' repository is a comprehensive package that includes a MiR driver and REST node compatible with Mobile Industrial Robots (MiR) MiR 250 Base robot. This module is designed to provide a comprehensive and intuitive approach to controlling and interacting with a MiR 250. The repository allows for both immediate, simplified control of the MiR along with higher-level development of complex missions and experiments.
6-
7-
## Features
8-
9-
### MiR 250 Driver Package
10-
11-
The MiR 250 driver package in this repository supports various methods to enable complete and comprehensive control of your MiR base robot and development of both simple and complex missions and environments. Key focuses and functions of the driver include:
12-
13-
1. **Debugging and Development**
14-
- Methods such as *get_actions* and *get_action_type* provide detailed information on the types of actions available to the MiR and the necessary parameters for continued development.
15-
16-
2. **Mission Queue Configuration and Monitoring**
17-
- Upon initialization of your MiR_Base robot, a new mission "session" is started. Functions related to mission queues will refer only to missions started during the session. The session can be reset after initialization as desired.
18-
19-
3. **High-Level, Multi-Action Mission Development**
20-
21-
4. **Simplified and Immediate MiR Control**
22-
23-
... WIP

pdm.lock

Lines changed: 328 additions & 331 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,3 @@ homepage = "https://github.com/AD-SDL/mir_module"
3333
[build-system]
3434
requires = ["setuptools>=61", "wheel"]
3535
build-backend = "setuptools.build_meta"
36-

ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ indent-style = "space"
132132
skip-magic-trailing-comma = false
133133

134134
# Like Black, automatically detect the appropriate line ending.
135-
line-ending = "auto"
135+
line-ending = "auto"

0 commit comments

Comments
 (0)