Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
force-bdss
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adham Hashibon
force-bdss
Merge requests
!27
Add file version handling for workflow file.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add file version handling for workflow file.
add_file_version
into
master
Overview
1
Commits
7
Pipelines
0
Changes
5
Merged
Adham Hashibon
requested to merge
add_file_version
into
master
7 years ago
Overview
1
Commits
7
Pipelines
0
Changes
5
Expand
Created by: martinRenou
0
0
Merge request reports
Viewing commit
963115b1
Prev
Next
Show latest version
5 files
+
53
−
56
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
963115b1
Merge branch 'master' into add_file_version
· 963115b1
martinRenou
authored
7 years ago
force_bdss/core_plugins/csv_extractor/csv_extractor_plugin.py
+
3
−
11
Options
from
envisage.plugin
import
Plugin
from
traits.api
import
List
from
force_bdss.data_sources.i_data_source_bundle
import
IDataSourceBundle
from
force_bdss.base_extension_plugin
import
BaseExtensionPlugin
from
.csv_extractor.csv_extractor_bundle
import
CSVExtractorBundle
class
CSVExtractorPlugin
(
Plugin
):
data_sources
=
List
(
IDataSourceBundle
,
contributes_to
=
'
force.bdss.data_sources.bundles
'
)
def
_data_sources_default
(
self
):
class
CSVExtractorPlugin
(
BaseExtensionPlugin
):
def
_data_source_bundles_default
(
self
):
return
[
CSVExtractorBundle
()]
Loading