Skip to content

Commit c93ccea

Browse files
committed
Move EP2025 config out of module into configs/, ensure
1 parent 6c0fa10 commit c93ccea

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
This program configures a Discord guild based on a given configuration.
44

5-
See [ep2025_config.py](./src/discord_guild_configurator/configs/ep2025_config.py) for an example configuration.
6-
It is the configuration of the EuroPython 2025 conference server.
5+
See [configs](./configs) for an example configuration.
76

87
## Features
98

src/discord_guild_configurator/configs/ep2025_config.py renamed to configs/europython_2025.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*ROLES_VOLUNTEERS,
4242
ROLE_BEGINNERS_DAY,
4343
]
44-
SERVER_CONFIG = GuildConfig(
44+
CONFIG = GuildConfig(
4545
roles=[
4646
Role(
4747
name=ROLE_COC,

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ fixable = [
6666
]
6767

6868
[tool.ruff.lint.per-file-ignores]
69+
"configs/*" = [
70+
"INP001", # no `__init__.py`
71+
]
6972
"scripts/*" = [
7073
"INP001", # no `__init__.py`
7174
"T201", # print

0 commit comments

Comments
 (0)