Skip to content

Commit

Permalink
feat(shebang): Update python to python3
Browse files Browse the repository at this point in the history
Many distributions don't have python by default, but have
python3. Update shebang to reflect that.

Signed-off-by: Denys Fedoryshchenko <[email protected]>
  • Loading branch information
nuclearcat committed Sep 11, 2024
1 parent c5f3f32 commit 4acc135
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kci-dev/kci-dev.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import click
Expand Down
2 changes: 1 addition & 1 deletion kci-dev/subcommands/commit.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import json
Expand Down
2 changes: 1 addition & 1 deletion kci-dev/subcommands/patch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import json
Expand Down

0 comments on commit 4acc135

Please sign in to comment.