-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🩹 patch the mandatory arguments to base class object
- Loading branch information
1 parent
f6d83d3
commit aab7246
Showing
3 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# -*- encoding: utf-8 -*- | ||
|
||
""" | ||
Creates an Extension to Perform Logical Operations | ||
Logical operations like ``and`` or ``or`` can be implemented with the | ||
module. This reduces manual intervention like using repeated for-loop | ||
and/or conditional statements for the end user. | ||
""" | ||
|
||
from typing import List, Iterable | ||
|
||
from nlpurify.scoring.baseclass import BaseLogicalOperator | ||
|
||
class LogicalRegexp(BaseLogicalOperator): | ||
def __init__(self, string : str, *references : List[str]) -> None: | ||
super().__init__(string, *references) |