Format code with black and autopep8

This commit fixes the style issues introduced in f1b812c according to the output
from black and autopep8.

Details: https://deepsource.io/gh/GradienceTeam/Gradience/transform/ff3ee163-e3b3-47ed-8c7e-4940975d1021/
This commit is contained in:
deepsource-autofix[bot] 2022-09-07 16:16:58 +00:00 committed by GitHub
parent f1b812ce1c
commit 0efcbb3bc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,11 +31,12 @@ USER_PLUGIN_DIR = os.path.join(
class GradiencePluginsList:
""" Represent the plugin group in Advanced"""
"""Represent the plugin group in Advanced"""
def __init__(self, win):
self.win = win
self.check_if_plugin_dir_exists()
self.pm = PluginManager()
@ -50,10 +51,10 @@ class GradiencePluginsList:
for pluginInfo in self.pm.getAllPlugins():
pluginInfo.plugin_object.activate()
@staticmethod
def check_if_plugin_dir_exists():
""" Check if the plugin directory exists, if not, create it """
"""Check if the plugin directory exists, if not, create it"""
if not os.path.exists(USER_PLUGIN_DIR):
os.makedirs(USER_PLUGIN_DIR)
return False