Skip to content
Snippets Groups Projects
Unverified Commit a7385633 authored by Samuel Guillemet's avatar Samuel Guillemet
Browse files

:bug: Fix mypy complaining

parent 6acb2662
No related branches found
No related tags found
Loading
Pipeline #6125293 passed with stages
in 2 minutes and 40 seconds
......@@ -78,7 +78,7 @@ def generate_webcast_lite_config(
if role_identifier == "":
role_identifier = None
if type(role_identifier) == str:
if isinstance(role_identifier, str):
role_identifier = role_identifier.split(",")
if role_identifier is not None:
......
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