Skip to content

Commit

Permalink
Remove src from README example imports
Browse files Browse the repository at this point in the history
  • Loading branch information
crnbaker authored Jul 20, 2023
1 parent 94a6118 commit 9a320ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A full working example is provided in
First, create a `ProCaptureSettings` dataclass:

```python
from src.pymagewell import (
from pymagewell import (
ProCaptureSettings, ImageSizeInPixels, TransferMode, ColourFormat
)

Expand All @@ -43,14 +43,14 @@ Then create a `ProCaptureDevice` (or `MockProCaptureDevice` for testing on a sys
your chosen settings:

```python
from src.pymagewell import ProCaptureDevice
from pymagewell import ProCaptureDevice

device = ProCaptureDevice(settings=device_settings)
```
Then create a `ProCaptureDeviceController` to transfer frames from the device to your PC:

```python
from src.pymagewell import ProCaptureController
from pymagewell import ProCaptureController

controller = ProCaptureController(device)
```
Expand Down

0 comments on commit 9a320ea

Please sign in to comment.