Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
anonymizer
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nlpworkers
anonymizer
Commits
14c82264
Commit
14c82264
authored
1 year ago
by
Michał Pogoda
Browse files
Options
Downloads
Patches
Plain Diff
style: remove unused imports
parent
0e0761f2
Branches
Branches containing commit
1 merge request
!10
Anonimizer v2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/detectors/date/date.py
+1
-1
1 addition, 1 deletion
src/detectors/date/date.py
src/detectors/ner/ner.py
+1
-2
1 addition, 2 deletions
src/detectors/ner/ner.py
src/detectors/url/url.py
+0
-1
0 additions, 1 deletion
src/detectors/url/url.py
with
2 additions
and
4 deletions
src/detectors/date/date.py
+
1
−
1
View file @
14c82264
from
typing
import
Any
,
Dict
,
List
,
Tuple
from
src.detections
import
DateDetection
,
Detection
from
src.detections
import
DateDetection
from
src.detectors.interface
import
Detector
from
.en
import
detect_dates_en
...
...
This diff is collapsed.
Click to expand it.
src/detectors/ner/ner.py
+
1
−
2
View file @
14c82264
...
...
@@ -2,8 +2,7 @@ from typing import Dict, List, Tuple
from
src.annotations
import
(
Annotation
,
MorphosyntacticAnnotation
,
NerAnnotation
)
from
src.detections
import
(
DETECTION_CLASSES_MAP
,
Detection
,
MorphosyntacticInfoMixin
)
from
src.detections
import
(
DETECTION_CLASSES_MAP
,
MorphosyntacticInfoMixin
)
from
src.detectors.interface
import
Detector
...
...
This diff is collapsed.
Click to expand it.
src/detectors/url/url.py
+
0
−
1
View file @
14c82264
from
typing
import
Any
,
Dict
,
List
,
Tuple
import
regex
as
re
from
src.detections
import
UrlDetection
from
src.detectors.interface
import
Detector
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment