mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Fix lots of errant '...' '...' string joins
This commit is contained in:
@@ -187,8 +187,7 @@ class BaseProvider(BaseSource):
|
||||
# If your code gets this warning see Source.populate for more
|
||||
# information
|
||||
self.log.warning(
|
||||
'Provider %s used in target mode did not return ' 'exists',
|
||||
self.id,
|
||||
'Provider %s used in target mode did not return exists', self.id
|
||||
)
|
||||
|
||||
# Make a (shallow) copy of the desired state so that everything from
|
||||
@@ -254,6 +253,4 @@ class BaseProvider(BaseSource):
|
||||
return len(plan.changes)
|
||||
|
||||
def _apply(self, plan):
|
||||
raise NotImplementedError(
|
||||
'Abstract base class, _apply method ' 'missing'
|
||||
)
|
||||
raise NotImplementedError('Abstract base class, _apply method missing')
|
||||
|
Reference in New Issue
Block a user