Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kavitharaju committed Dec 12, 2024
1 parent c1a15c3 commit 8863feb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 6 additions & 3 deletions py-usfm-parser/src/usfm_grammar/schema.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'''JSON schema definition included within the package code'''

usj_schema = {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://github.com/usfm-bible/tcdocs/blob/main/grammar/usj.js",
Expand All @@ -8,11 +10,12 @@
"markerObject": {
"type": "object",
"properties": {
"type": {
"description": "The kind/category of node or element this is, corresponding the USFM marker and USX node",
"type": {
"description": "The kind/category of node or element this is,"+\
"corresponding the USFM marker and USX node",
"type": "string"
},
"marker": {
"marker": {
"description": "The corresponding marker in USFM or style in USX",
"type": "string"
},
Expand Down
1 change: 0 additions & 1 deletion py-usfm-parser/src/usfm_grammar/validator.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'''Check the formats of USFM and USJ. Also tries to fixe common errors in USFM'''

import re
import json
import jsonschema

import tree_sitter_usfm3 as tsusfm
Expand Down

0 comments on commit 8863feb

Please sign in to comment.