Skip to content

Commit 00c2a06

Browse files
committed
Run autofixers with pinned up packages
Signed-off-by: Tim Paine <[email protected]>
1 parent 92b7e34 commit 00c2a06

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

docs/wiki/concepts/Execution-Modes.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ As always, `csp.now()` should still be used in `csp.node` code, even when runnin
4141

4242
When consuming data from input adapters there are three choices on how one can consume the data:
4343

44-
| PushMode | EngineMode | Description |
45-
| :------- | :--------- | :---------- |
46-
| **LAST_VALUE** | Simulation | all ticks from input source with duplicate timestamps (on the same timeseries) will tick once with the last value on a given timestamp |
47-
| | Realtime | all ticks that occurred since previous engine cycle will collapse / conflate to the latest value |
44+
| PushMode | EngineMode | Description |
45+
| :----------------- | :--------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
46+
| **LAST_VALUE** | Simulation | all ticks from input source with duplicate timestamps (on the same timeseries) will tick once with the last value on a given timestamp |
47+
| | Realtime | all ticks that occurred since previous engine cycle will collapse / conflate to the latest value |
4848
| **NON_COLLAPSING** | Simulation | all ticks from input source with duplicate timestamps (on the same timeseries) will tick once per engine cycle. subsequent cycles will execute with the same time |
49-
| | Realtime | all ticks that occurred since previous engine cycle will be ticked across subsequent engine cycles as fast as possible |
50-
| **BURST** | Simulation | all ticks from input source with duplicate timestamps (on the same timeseries) will tick once with a list of all values |
51-
| | Realtime | all ticks that occurred since previous engine cycle will tick once with a list of all the values |
49+
| | Realtime | all ticks that occurred since previous engine cycle will be ticked across subsequent engine cycles as fast as possible |
50+
| **BURST** | Simulation | all ticks from input source with duplicate timestamps (on the same timeseries) will tick once with a list of all values |
51+
| | Realtime | all ticks that occurred since previous engine cycle will tick once with a list of all the values |
5252

5353
## Realtime Group Event Synchronization
5454

docs/wiki/dev-guides/Build-CSP-from-Source.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -198,11 +198,11 @@ By default, we pull and build dependencies with [vcpkg](https://vcpkg.io/en/). W
198198

199199
CSP has listing and auto formatting.
200200

201-
| Language | Linter | Autoformatter | Description |
202-
| :------- | :----- | :------------ | :---------- |
203-
| C++ | `clang-format` | `clang-format` | Style |
204-
| Python | `ruff` | `ruff` | Style |
205-
| Python | `isort` | `isort` | Imports |
201+
| Language | Linter | Autoformatter | Description |
202+
| :------- | :------------- | :------------- | :---------- |
203+
| C++ | `clang-format` | `clang-format` | Style |
204+
| Python | `ruff` | `ruff` | Style |
205+
| Python | `isort` | `isort` | Imports |
206206

207207
**C++ Linting**
208208

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
)
6565

6666
if VCPKG_TRIPLET is not None:
67-
cmake_args.append( f"-DVCPKG_TARGET_TRIPLET={VCPKG_TRIPLET}" )
67+
cmake_args.append(f"-DVCPKG_TARGET_TRIPLET={VCPKG_TRIPLET}")
6868
else:
6969
cmake_args.append("-DCSP_USE_VCPKG=OFF")
7070

0 commit comments

Comments
 (0)