Skip to content

Commit

Permalink
Fix flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
njoyce committed Feb 16, 2015
1 parent d37e9ed commit 148e14d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyamf/alias.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ def _finalise_compile(self):
self.dynamic = True

if self.inherited_dynamic is not None:
if (not self.inherited_dynamic
and not self.sealed
and self.inherited_sealed):
if not self.inherited_dynamic \
and not self.sealed \
and self.inherited_sealed:
self.dynamic = True
else:
self.dynamic = self.inherited_dynamic
Expand Down

0 comments on commit 148e14d

Please sign in to comment.