From 224ff93531179c1ccc73dbbd060172ca4e26b7dd Mon Sep 17 00:00:00 2001 From: bobloy Date: Thu, 24 Sep 2020 17:06:17 -0400 Subject: [PATCH] black and __all__ --- werewolf/roles/__init__.py | 1 + werewolf/votegroups/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/werewolf/roles/__init__.py b/werewolf/roles/__init__.py index ba929e5..201799a 100644 --- a/werewolf/roles/__init__.py +++ b/werewolf/roles/__init__.py @@ -3,3 +3,4 @@ from .shifter import Shifter from .vanillawerewolf import VanillaWerewolf from .villager import Villager +__all__ = ["Seer", "Shifter", "VanillaWerewolf", "Villager"] diff --git a/werewolf/votegroups/__init__.py b/werewolf/votegroups/__init__.py index 03abc1b..6b99b1e 100644 --- a/werewolf/votegroups/__init__.py +++ b/werewolf/votegroups/__init__.py @@ -1 +1 @@ -from .wolfvote import WolfVote \ No newline at end of file +from .wolfvote import WolfVote