Browse Source
Merge pull request #979 from lark-parser/issue977
Fix for issue #977
tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.12.0
Erez Shinan
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
lark/utils.py
|
|
@@ -287,7 +287,7 @@ except ImportError: |
|
|
|
atomicwrites = None |
|
|
|
|
|
|
|
class FS: |
|
|
|
exists = os.path.exists |
|
|
|
exists = staticmethod(os.path.exists) |
|
|
|
|
|
|
|
@staticmethod |
|
|
|
def open(name, mode="r", **kwargs): |
|
|
|