Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
remykarem authored Aug 5, 2021
1 parent 9984ec1 commit 065420b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions p2j/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ def main():
args = parser.parse_args()

if args.reverse:
python2jupyter(source_filename=args.source_filename,
jupyter2python(source_filename=args.source_filename,
target_filename=args.target_filename,
overwrite=args.overwrite)
else:
jupyter2python(source_filename=args.source_filename,
python2jupyter(source_filename=args.source_filename,
target_filename=args.target_filename,
overwrite=args.overwrite)

Expand Down

0 comments on commit 065420b

Please sign in to comment.