We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2687fec commit 560084bCopy full SHA for 560084b
business_logic/__init__.py
@@ -1,4 +1,4 @@
1
-from business_logic.core import LogicException, validated_by, validator
2
-from business_logic.errors import LogicErrors
+from business_logic.core import LogicException, validated_by, validator # noqa: F401
+from business_logic.errors import LogicErrors # noqa: F401
3
4
__version__ = '0.1.1'
examples/football_match/main.py
@@ -80,5 +80,6 @@ def simulate_match(match, potential_shooters):
80
print(u"{:15} - {}".format(match.first_team.name, match.first_team.goals))
81
print(u"{:15} - {}".format(match.second_team.name, match.second_team.goals))
82
83
+
84
if __name__ == '__main__':
85
main()
0 commit comments