Skip to content

Commit

Permalink
refactor: [json] re-order imports to follow the google coding guideline
Browse files Browse the repository at this point in the history
  • Loading branch information
ssato committed Mar 6, 2017
1 parent 69c5663 commit 996f783
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions anyconfig/backend/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
"""
from __future__ import absolute_import

import anyconfig.backend.base
import anyconfig.compat

try:
import json
except ImportError:
import simplejson as json

import anyconfig.backend.base
import anyconfig.compat


_LOAD_OPTS = ["cls", "object_hook", "parse_float", "parse_int",
"parse_constant"]
Expand Down

0 comments on commit 996f783

Please sign in to comment.