Skip to content
This repository has been archived by the owner on Aug 18, 2022. It is now read-only.

Commit

Permalink
fix doctstring
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontaigu committed Jun 20, 2018
1 parent fd6af77 commit b0f7fa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pylas/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def create_las(*, point_format_id=0, file_version=None):
>>> las = create_las(point_format_id=6,file_version="1.2")
Traceback (most recent call last):
...
ValueError: Point format 6 is not compatible with file version 1.2
pylas.errors.PylasError: Point format 6 is not compatible with file version 1.2
If you provide only the point_format the file_version will automatically
Expand Down Expand Up @@ -204,7 +204,7 @@ def convert(source_las, *, point_format_id=None, file_version=None):
>>> convert(las, point_format_id=6, file_version='1.2')
Traceback (most recent call last):
...
ValueError: Point format 6 is not compatible with file version 1.2
pylas.errors.PylasError: Point format 6 is not compatible with file version 1.2
Parameters
----------
Expand Down

0 comments on commit b0f7fa8

Please sign in to comment.