Skip to content

Commit

Permalink
examples: Execute python3 from the shebang line
Browse files Browse the repository at this point in the history
  • Loading branch information
hughmcmaster authored and NickCrews committed Mar 29, 2024
1 parent 3efe10d commit 649869e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/git/git.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
"""
usage: git [--version] [--exec-path=<path>] [--html-path]
[-p|--paginate|--no-pager] [--no-replace-objects]
Expand Down
2 changes: 1 addition & 1 deletion examples/interactive_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""
This example uses docopt with the built in cmd module to demonstrate an
interactive command application.
Expand Down

0 comments on commit 649869e

Please sign in to comment.