Skip to content

Commit

Permalink
removed excess imports including both __future__ and others
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Jun 22, 2020
1 parent ff91110 commit 40ab439
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 41 deletions.
2 changes: 0 additions & 2 deletions examples/example_always_use_https.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
2 changes: 0 additions & 2 deletions examples/example_are_zones_ipv6.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
2 changes: 0 additions & 2 deletions examples/example_are_zones_ipv6_simple.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
3 changes: 0 additions & 3 deletions examples/example_certificates.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys
import json

sys.path.insert(0, os.path.abspath('..'))
import CloudFlare
Expand Down
2 changes: 0 additions & 2 deletions examples/example_create_zone_and_populate.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
5 changes: 0 additions & 5 deletions examples/example_delete_zone_entry.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys
import re
import json
import requests

sys.path.insert(0, os.path.abspath('..'))
import CloudFlare
Expand Down
2 changes: 0 additions & 2 deletions examples/example_dns_export.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys
sys.path.insert(0, os.path.abspath('..'))
Expand Down
2 changes: 0 additions & 2 deletions examples/example_dnssec_settings.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
2 changes: 0 additions & 2 deletions examples/example_ips.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
2 changes: 0 additions & 2 deletions examples/example_list_api_from_web.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys
import json
Expand Down
2 changes: 0 additions & 2 deletions examples/example_paging_thru_zones.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
2 changes: 0 additions & 2 deletions examples/example_proxied.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
2 changes: 0 additions & 2 deletions examples/example_settings.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
4 changes: 0 additions & 4 deletions examples/example_update_dynamic_dns.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys
import re
import json
import requests

sys.path.insert(0, os.path.abspath('..'))
Expand Down
3 changes: 0 additions & 3 deletions examples/example_user.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys
import json

sys.path.insert(0, os.path.abspath('..'))
import CloudFlare
Expand Down
2 changes: 0 additions & 2 deletions examples/example_with_usage.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys

Expand Down
2 changes: 0 additions & 2 deletions examples/example_zones.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python
"""Cloudflare API code - example"""

from __future__ import print_function

import os
import sys
import re
Expand Down

0 comments on commit 40ab439

Please sign in to comment.