From aa3cd45a3bf9c2e25cd10ac8e97345008189ec9b Mon Sep 17 00:00:00 2001 From: timofey Date: Mon, 2 Oct 2023 16:57:53 +0000 Subject: [PATCH] reformat --- v6d3losyash/__init__.py | 2 +- v6d3losyash/config.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/v6d3losyash/__init__.py b/v6d3losyash/__init__.py index 0fcbcba..9047e5d 100644 --- a/v6d3losyash/__init__.py +++ b/v6d3losyash/__init__.py @@ -1,3 +1,3 @@ -__all__ = ('config',) +__all__ = ("config",) import v6d3losyash.config as config diff --git a/v6d3losyash/config.py b/v6d3losyash/config.py index 3a79f30..5fa9c65 100644 --- a/v6d3losyash/config.py +++ b/v6d3losyash/config.py @@ -2,13 +2,13 @@ import os from v6d0auth.config import root -__all__ = ('guild', 'emoji', 'role', 'message', 'channel', 'role_channel', 'myroot') +__all__ = ("guild", "emoji", "role", "message", "channel", "role_channel", "myroot") -guild = int(os.getenv('v6guild', 541241763042689025)) -emoji = int(os.getenv('v6emoji', 586669134406877270)) -role = int(os.getenv('v6role', 643896112977018880)) -message = int(os.getenv('v6message', 825385619097518110)) -channel = int(os.getenv('v6channel', 876814972968116224)) -role_channel = int(os.getenv('v6channel', 964261739980025966)) -myroot = root / 'v6d3losyash' +guild = int(os.getenv("v6guild", 541241763042689025)) +emoji = int(os.getenv("v6emoji", 586669134406877270)) +role = int(os.getenv("v6role", 643896112977018880)) +message = int(os.getenv("v6message", 825385619097518110)) +channel = int(os.getenv("v6channel", 876814972968116224)) +role_channel = int(os.getenv("v6channel", 964261739980025966)) +myroot = root / "v6d3losyash" myroot.mkdir(exist_ok=True)