-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated readme * Updated gitignore * Travis for all branches * Fixed setup.py * Updated gitignore * blacked * Updated travis * Fixed travis branches * Updated ci for PR checks * Fixed Typing Issue * Removed 3.10 build
- Loading branch information
Oliver Borchers
authored
Nov 27, 2021
1 parent
616c3dd
commit 72008d2
Showing
21 changed files
with
9,556 additions
and
397 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
*.o | ||
*.so | ||
*.pyc | ||
*.pyo | ||
*.pyd | ||
|
||
# Packages # | ||
############ | ||
|
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 |
---|---|---|
@@ -1,20 +1,24 @@ | ||
import logging | ||
|
||
from fse import models | ||
|
||
from .inputs import BaseIndexedList | ||
from .inputs import IndexedList | ||
from .inputs import CIndexedList | ||
from .inputs import SplitIndexedList | ||
from .inputs import SplitCIndexedList | ||
from .inputs import CSplitIndexedList | ||
from .inputs import CSplitCIndexedList | ||
from .inputs import IndexedLineDocument | ||
from .inputs import ( | ||
BaseIndexedList, | ||
CIndexedList, | ||
CSplitCIndexedList, | ||
CSplitIndexedList, | ||
IndexedLineDocument, | ||
IndexedList, | ||
SplitCIndexedList, | ||
SplitIndexedList, | ||
) | ||
|
||
import logging | ||
|
||
class NullHandler(logging.Handler): | ||
def emit(self, record): | ||
pass | ||
|
||
logger = logging.getLogger('fse') | ||
|
||
logger = logging.getLogger("fse") | ||
if len(logger.handlers) == 0: # To ensure reload() doesn't add another one | ||
logger.addHandler(NullHandler()) |
Oops, something went wrong.