Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
lscsoft
bilby
Merge requests
!873
Resolve "Time to refactor utils?"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Time to refactor utils?"
509-time-to-refactor-utils
into
master
Overview
5
Commits
14
Pipelines
12
Changes
21
Merged
Moritz Huebner
requested to merge
509-time-to-refactor-utils
into
master
4 years ago
Overview
4
Commits
14
Pipelines
12
Changes
21
Expand
Closes
#509 (closed)
Edited
3 years ago
by
Moritz Huebner
0
0
Merge request reports
Compare
master
version 11
6117746a
3 years ago
version 10
b2349068
3 years ago
version 9
831f779d
3 years ago
version 8
bb9c673c
4 years ago
version 7
bb9c673c
4 years ago
version 6
6ea4dbcb
4 years ago
version 5
f211a388
4 years ago
version 4
9072f37c
4 years ago
version 3
4d242cab
4 years ago
version 2
3a0b7db9
4 years ago
version 1
6c548e58
4 years ago
master (base)
and
latest version
latest version
1e70997f
14 commits,
3 years ago
version 11
6117746a
13 commits,
3 years ago
version 10
b2349068
12 commits,
3 years ago
version 9
831f779d
11 commits,
3 years ago
version 8
bb9c673c
9 commits,
4 years ago
version 7
bb9c673c
9 commits,
4 years ago
version 6
6ea4dbcb
7 commits,
4 years ago
version 5
f211a388
6 commits,
4 years ago
version 4
9072f37c
5 commits,
4 years ago
version 3
4d242cab
4 commits,
4 years ago
version 2
3a0b7db9
3 commits,
4 years ago
version 1
6c548e58
2 commits,
4 years ago
21 files
+
1583
−
1509
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
21
Search (e.g. *.vue) (Ctrl+P)
bilby/core/utils/__init__.py
0 → 100644
+
19
−
0
Options
from
.calculus
import
*
from
.cmd
import
*
from
.colors
import
*
from
.constants
import
*
from
.conversion
import
*
from
.counter
import
*
from
.docs
import
*
from
.introspection
import
*
from
.io
import
*
from
.logger
import
*
from
.plotting
import
*
from
.progress
import
*
from
.samples
import
*
from
.series
import
*
# Instantiate the default argument parser at runtime
command_line_args
,
command_line_parser
=
set_up_command_line_arguments
()
# Instantiate the default logging
setup_logger
(
print_version
=
False
,
log_level
=
command_line_args
.
log_level
)
Loading