Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jignaciopm committed Aug 7, 2024
1 parent c47ab70 commit 0ba2879
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions openedx_filters/content_authoring/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""
Package where filters related to the content_authoring subdomain are implemented.
The content_authoring subdomain corresponds to {Architecture Subdomain} defined in
the OEP-41.
"""
1 change: 1 addition & 0 deletions openedx_filters/content_authoring/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class PreventLmsUrlCreationRender(OpenEdxFilterException):
def run_filter(cls, context, org, val_name, default):
"""
Execute a filter with the signature specified.
Arguments:
context (str): rendering context value
org (str): Course org filter, this value will be used to filter out the correct lms url configuration.
Expand Down
3 changes: 3 additions & 0 deletions openedx_filters/content_authoring/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
Package where unittest for content_authoring subdomain filters are located.
"""
4 changes: 1 addition & 3 deletions openedx_filters/content_authoring/tests/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
from ddt import data, ddt, unpack
from django.test import TestCase

from openedx_filters.content_authoring.filters import (
LmsUrlCreationStarted,
)
from openedx_filters.content_authoring.filters import LmsUrlCreationStarted


@ddt
Expand Down

0 comments on commit 0ba2879

Please sign in to comment.