From af19de1d4b042bc53db611d041e3af51d8186990 Mon Sep 17 00:00:00 2001 From: Agrendalath Date: Mon, 5 Feb 2024 12:56:24 +0100 Subject: [PATCH] style: fix linting issues --- completable_html_xblock/__init__.py | 1 + completable_html_xblock/html.py | 1 + tests/test_basics.py | 1 + 3 files changed, 3 insertions(+) diff --git a/completable_html_xblock/__init__.py b/completable_html_xblock/__init__.py index a0c277d..907fc3e 100644 --- a/completable_html_xblock/__init__.py +++ b/completable_html_xblock/__init__.py @@ -1,4 +1,5 @@ """Completable HTML XBlock module.""" + from __future__ import absolute_import from .html import CompletableHTML5XBlock diff --git a/completable_html_xblock/html.py b/completable_html_xblock/html.py index 88e0616..3536e84 100644 --- a/completable_html_xblock/html.py +++ b/completable_html_xblock/html.py @@ -1,4 +1,5 @@ """This XBlock help creating a secure and easy-to-use HTML blocks in edx-platform.""" + from __future__ import absolute_import import logging diff --git a/tests/test_basics.py b/tests/test_basics.py index 42181ee..52bf1e5 100644 --- a/tests/test_basics.py +++ b/tests/test_basics.py @@ -1,6 +1,7 @@ """ HTML XBlock tests """ + from __future__ import print_function import unittest