Browse Source

Examples: Fixes to paths (Issue #780)

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.11.2
Erez Sh 4 years ago
parent
commit
e0e698938c
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      examples/README.rst
  2. +1
    -1
      examples/advanced/error_puppet.py

+ 1
- 1
examples/README.rst View File

@@ -15,7 +15,7 @@ standard library of your local installation:


.. code:: bash .. code:: bash


[lark]$ python -m examples.python_parser
[lark]$ python -m examples.advanced.python_parser


Beginner Examples Beginner Examples
~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~

+ 1
- 1
examples/advanced/error_puppet.py View File

@@ -12,7 +12,7 @@ you can resume the run by returning True.


from lark import Token from lark import Token


from _json_parser import json_parser
from examples.advanced._json_parser import json_parser


def ignore_errors(e): def ignore_errors(e):
if e.token.type == 'COMMA': if e.token.type == 'COMMA':


Loading…
Cancel
Save