Skip to content

Commit bbdefd2

Browse files
committed
Use the future module for python2
1 parent 3757fec commit bbdefd2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

examples/example.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/env python2
22
""" Example code of how to use the Remotsy Lib """
3+
from __future__ import print_function
34
from argparse import ArgumentParser
45
from sys import argv
56
from remotsylib.api import API

remotsylib/api.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
""" Remotsy library for python
22
Copyright 2018 Jorge Cisneros [email protected]
33
"""
4+
from __future__ import print_function
45
import sys
56
from json import dumps, loads
67
try:

0 commit comments

Comments
 (0)