Skip to content
Snippets Groups Projects
Commit d128df9f authored by williamforbrigd's avatar williamforbrigd
Browse files

removed unused stuff and deleted unused file

parent 1224fb9b
No related branches found
No related tags found
No related merge requests found
......@@ -7,13 +7,10 @@ import click
import concurrent.futures
from bbcli.entities.Node import Node
from bbcli.utils.URL_builder import URL_builder
from bbcli.utils import content_utils
from bbcli.utils.content_handler import content_handler
from bbcli.views import contents_view
url_builder = URL_builder()
def standard_options(function):
function = click.option('-h', '--hide-content', is_flag=True,
help='Hide content for students')(function)
......
from io import StringIO
class StringBuilder:
_file_str = None
def __init__(self):
self._file_str = StringIO()
def append(self, str):
self._file_str.write(str)
def __str__(self):
return self._file_str.getvalue()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment