Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
hive
hivemind
Merge requests
!375
Something went wrong on our end
Change shebang to "#!/usr/bin/env python3" in python shell scripts. Fix
#103
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Change shebang to "#!/usr/bin/env python3" in python shell scripts. Fix
#103
103-change-shebangs-in-python-shell-scripts
into
develop
Overview
0
Commits
2
Pipelines
0
Changes
13
Merged
Wojciech Barcik
requested to merge
103-change-shebangs-in-python-shell-scripts
into
develop
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
13
Expand
Closes
#103 (closed)
0
0
Merge request reports
Viewing commit
7219cc4b
Prev
Next
Show latest version
13 files
+
15
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
7219cc4b
Change shebang to "#!/usr/bin/env python3" in python shell scripts. Fix
#103
· 7219cc4b
Wojciech Barcik
authored
4 years ago
hive/utils/profiler.py
+
1
−
1
Options
#!/usr/
local/
bin/python3
#!/usr/bin/
env
python3
"""
Hive profiling tools
"""
import
cProfile
Loading