Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Aug 13, 2024
1 parent 2eace42 commit 0ab9686
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion envisage/ui/tasks/preferences_pane.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ def trait_context(self):
# can lead to the preferences node being updated prematurely.
# xref: enthought/envisage#582
traits_to_clone = [
trait_name for trait_name in self.model.copyable_trait_names()
trait_name
for trait_name in self.model.copyable_trait_names()
if trait_name != "preferences"
]
self._model = self.model.clone_traits(traits_to_clone)
Expand Down

0 comments on commit 0ab9686

Please sign in to comment.