mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
5 lines
114 B
Python
5 lines
114 B
Python
def kwic(document, listPairs=False, ignoreWords=[]):
|
|
if not document:
|
|
return []
|
|
|
|
return [document] |