Skip to content

Commit

Permalink
Fixed bug listing available DBs.
Browse files Browse the repository at this point in the history
  • Loading branch information
owo committed May 24, 2022
1 parent c7730ee commit 120f537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion camel_tools/cli/camel_morphology.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
_ANALYSIS_BACKOFFS = frozenset(('NONE', 'NOAN_ALL', 'NOAN_PROP', 'ADD_ALL',
'ADD_PROP'))
_GENARATION_BACKOFFS = frozenset(('NONE', 'REINFLECT'))
_BUILTIN_DBS = frozenset([db.name for db in MorphologyDB.list_builtin_dbs()])
_BUILTIN_DBS = frozenset(MorphologyDB.list_builtin_dbs())
_DEFAULT_DB = 'calima-msa-r13'

_DIAC_RE = re.compile(r'[' + re.escape(u''.join(AR_DIAC_CHARSET)) + r']')
Expand Down

0 comments on commit 120f537

Please sign in to comment.