Skip to content

Commit af815cd

Browse files
committed
fix missing newlines breaking lists
1 parent 1980ffb commit af815cd

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

python/binaryview.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2613,6 +2613,7 @@ def add_memory_region(self, name: str, start: int, source: Optional[Union['os.Pa
26132613
- **UnbackedMemoryRegion**: Region not backed by any data source (requires `length` to be set).
26142614
26152615
The `source` parameter determines the type:
2616+
26162617
- `os.PathLike` or `str`: File path to be loaded into memory as a `DataMemoryRegion`.
26172618
- `bytes` or `bytearray`: Directly loaded into memory as a `DataMemoryRegion`.
26182619
- `databuffer.DataBuffer`: Loaded as a `DataMemoryRegion`.
@@ -5207,6 +5208,7 @@ def update_analysis_and_wait(self) -> None:
52075208
analysis to finish before returning.
52085209
52095210
**Thread Restrictions**:
5211+
52105212
- **Worker Threads**: This function cannot be called from a worker thread. If called from a worker thread, an error will be
52115213
logged, and the function will return immediately.
52125214
- **UI Threads**: This function cannot be called from a UI thread. If called from a UI thread, an error will be logged, and

python/transform.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ class TransformContext:
446446
transformation state, and relationships to parent/child contexts.
447447
448448
Each context can have:
449+
449450
- Input data (BinaryView)
450451
- Transform information (name, parameters, results)
451452
- File selection state (available_files, requested_files)

0 commit comments

Comments
 (0)