Skip to content

Commit 9962da4

Browse files
author
M. Zulqarnain
authored
Run 2To3 (#8)
1 parent 76d35c3 commit 9962da4

File tree

6 files changed

+0
-17
lines changed

6 files changed

+0
-17
lines changed

docs/conf.py

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
All configuration values have a default; values that are commented out
1313
serve to show the default.
1414
"""
15-
16-
from __future__ import absolute_import, unicode_literals
17-
1815
import io
1916
import os
2017
import re

manage.py

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"""
33
Django administration utility.
44
"""
5-
6-
from __future__ import absolute_import, unicode_literals
7-
85
import os
96
import sys
107

setup.py

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
"""
77
Package metadata for xss_utils.
88
"""
9-
from __future__ import absolute_import, print_function
10-
119
import os
1210
import re
1311
import sys

test_settings.py

-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
In a real-world use case, apps in this project are installed into other
55
Django applications, so these settings will not be used.
66
"""
7-
8-
from __future__ import absolute_import, unicode_literals
9-
107
from os.path import abspath, dirname, join
118

129

xss_utils/__init__.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Utilities to prevent possible XSS attacks on Django/Mako templates..
33
"""
4-
5-
from __future__ import absolute_import, unicode_literals
6-
74
__version__ = '0.1.3'
85

96
default_app_config = 'xss_utils.apps.XssUtilsConfig' # pylint: disable=invalid-name

xss_utils/apps.py

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"""
33
xss_utils Django application initialization.
44
"""
5-
6-
from __future__ import absolute_import, unicode_literals
7-
85
from django.apps import AppConfig
96

107

0 commit comments

Comments
 (0)