Skip to content

Commit

Permalink
Fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rsc-dev committed Oct 8, 2017
1 parent f7bab59 commit 1e47f16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion loophole/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import sys

from polar import Device
import polar.pb.device_pb2 as pb_device
from polar.pb import device_pb2 as pb_device

__INTRO = """
Expand Down
4 changes: 2 additions & 2 deletions loophole/polar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
import os
import time

import polar.pb.pftp_response_pb2 as pb_resp
import polar.pb.pftp_request_pb2 as pb_req
import pb.pftp_response_pb2 as pb_resp
import pb.pftp_request_pb2 as pb_req


PFTP_ERROR = {0: 'OPERATION_SUCCEEDED',
Expand Down

0 comments on commit 1e47f16

Please sign in to comment.