Skip to content

Commit

Permalink
Fix more flake8 v6 whitespace problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Wittgen committed Oct 7, 2023
1 parent dee9127 commit 3a4ce27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _config(self) -> Config:
# Config Fields should never outlive their config class instance
# assert that as such here
value = self._config_()
assert(value is not None)
assert value is not None
return value

@property
Expand Down
6 changes: 3 additions & 3 deletions python/lsst/pipe/tasks/configurableActions/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __call__(self):
return self.var

def validate(self):
assert(self.var is not None)
assert self.var is not None


class ActionTest2(ConfigurableAction):
Expand All @@ -50,7 +50,7 @@ def __call__(self):
return self.var

def validate(self):
assert(self.var is not None)
assert self.var is not None


class ActionTest3(ConfigurableAction):
Expand All @@ -60,7 +60,7 @@ def __call__(self):
return self.var

def validate(self):
assert(self.var is not None)
assert self.var is not None


class TestConfig(Config):
Expand Down

0 comments on commit 3a4ce27

Please sign in to comment.