Skip to content

Commit 560084b

Browse files
committed
pep8 fixes
1 parent 2687fec commit 560084b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

business_logic/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from business_logic.core import LogicException, validated_by, validator
2-
from business_logic.errors import LogicErrors
1+
from business_logic.core import LogicException, validated_by, validator # noqa: F401
2+
from business_logic.errors import LogicErrors # noqa: F401
33

44
__version__ = '0.1.1'

examples/football_match/main.py

+1
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,6 @@ def simulate_match(match, potential_shooters):
8080
print(u"{:15} - {}".format(match.first_team.name, match.first_team.goals))
8181
print(u"{:15} - {}".format(match.second_team.name, match.second_team.goals))
8282

83+
8384
if __name__ == '__main__':
8485
main()

0 commit comments

Comments
 (0)