Преглед изворни кода

Fixed flake8 error for import order

Nuwan Goonasekera пре 7 година
родитељ
комит
84bd92c652
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      cloudbridge/cloud/providers/aws/services.py

+ 1 - 2
cloudbridge/cloud/providers/aws/services.py

@@ -1,4 +1,5 @@
 """Services implemented by the AWS provider."""
+import ipaddress
 import logging
 import string
 
@@ -6,8 +7,6 @@ from botocore.exceptions import ClientError
 
 import cachetools
 
-import ipaddress
-
 import requests
 
 import cloudbridge.cloud.base.helpers as cb_helpers