Skip to content

Commit 6738e81

Browse files
committed
chore: unused import removed
1 parent 7546850 commit 6738e81

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tutorwordpress/plugin.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import annotations
22

33
import os
4-
from glob import glob
54

65
import click
76
from tutor import fmt, hooks, config as tutor_config
@@ -78,12 +77,10 @@ def config(context: click.Context) -> None:
7877
protocol = "https" if config["ENABLE_HTTPS"] else "http"
7978
lms_host = f"{protocol}://{config['LMS_HOST']}"
8079
click.echo(fmt.title("WordPress Plugin Configurations"))
81-
click.echo(
8280
fmt.echo_info(
8381
"\n"
8482
f"Open edX Domain: {lms_host} \n"
8583
f"Client ID: {config['WORDPRESS_OAUTH2_KEY_SSO']} \n"
8684
f"Client ID (dev): {config['WORDPRESS_OAUTH2_KEY_SSO_DEV']} \n"
8785
f"Client Secret: {config['WORDPRESS_OAUTH2_SECRET']} \n"
88-
)
8986
)

0 commit comments

Comments
 (0)