Skip to content

Commit c59a47e

Browse files
fixed README
1 parent 102b1f1 commit c59a47e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Look at the [documentation](https://display-server-interactions.readthedocs.io/e
2323

2424
```python
2525
from display_server_interactions import DSI
26-
window = DSI.get_active_window()
26+
dsi = DSI()
27+
window = dsi.get_active_window()
2728
```
2829

2930
### Get basic window information

display_server_interactions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from platform import system as __system
55

6-
__version__ = "0.0.dev2"
6+
__version__ = "0.0.dev3"
77
__author__ = "Commandcracker"
88

99
__os_name = __system().lower()

0 commit comments

Comments
 (0)