Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove from __future__ import print_function #282

Merged
merged 1 commit into from
Feb 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion azdev/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# license information.
# -----------------------------------------------------------------------------

from __future__ import print_function
import sys

from knack import CLI, CLICommandsLoader
Expand Down
2 changes: 0 additions & 2 deletions azdev/operations/code_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# license information.
# -----------------------------------------------------------------------------

from __future__ import print_function

import json
import os
import re
Expand Down
2 changes: 0 additions & 2 deletions azdev/operations/help/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# license information.
# -----------------------------------------------------------------------------

from __future__ import print_function

import os
import sys
import json
Expand Down
2 changes: 0 additions & 2 deletions azdev/operations/linter/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# license information.
# -----------------------------------------------------------------------------

from __future__ import print_function

import os
import inspect
from importlib import import_module
Expand Down
2 changes: 0 additions & 2 deletions azdev/utilities/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# license information.
# -----------------------------------------------------------------------------

from __future__ import print_function

import sys


Expand Down
1 change: 0 additions & 1 deletion scripts/license_verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

# Verify that all *.py files have a license header in the file.

from __future__ import print_function
import os
import sys

Expand Down