Skip to content

Commit c3ab83f

Browse files
authored
Merge pull request #4 from jakimowb/main
Update README.md
2 parents 5f53c05 + cf072f2 commit c3ab83f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,22 @@ ignore = QGS101, QGS102
5353

5454
```python
5555
# Bad
56-
from qgs._core import QgsMapLayer, QgsVectorLayer
56+
from qgis._core import QgsMapLayer, QgsVectorLayer
5757
from qgis._core import QgsApplication
5858

5959
# Good
60-
from qgs.core import QgsMapLayer, QgsVectorLayer
60+
from qgis.core import QgsMapLayer, QgsVectorLayer
6161
from qgis.core import QgsApplication
6262
```
6363

6464
### QGS102
6565

6666
```python
6767
# Bad
68-
import qgs._core.QgsVectorLayer as QgsVectorLayer
68+
import qgis._core.QgsVectorLayer as QgsVectorLayer
6969

7070
# Good
71-
import qgs.core.QgsVectorLayer as QgsVectorLayer
71+
import qgis.core.QgsVectorLayer as QgsVectorLayer
7272
```
7373

7474
### QGS103

0 commit comments

Comments
 (0)