Skip to content

Commit

Permalink
Use the future module for python2
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecis committed Feb 21, 2019
1 parent 3757fec commit bbdefd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/example.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/env python2
""" Example code of how to use the Remotsy Lib """
from __future__ import print_function
from argparse import ArgumentParser
from sys import argv
from remotsylib.api import API
Expand Down
1 change: 1 addition & 0 deletions remotsylib/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
""" Remotsy library for python
Copyright 2018 Jorge Cisneros [email protected]
"""
from __future__ import print_function
import sys
from json import dumps, loads
try:
Expand Down

0 comments on commit bbdefd2

Please sign in to comment.