We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 914bb99 commit c5de935Copy full SHA for c5de935
1 file changed
client/deis.py
@@ -578,7 +578,7 @@ def formations_destroy(self, args):
578
sys.stdout.write('Destroying {}... '.format(formation))
579
sys.stdout.flush()
580
response = self._dispatch('delete', '/api/formations/{}'.format(formation))
581
- if response.status_code in (requests.codes.no_content,
+ if response.status_code in (requests.codes.no_content, # @UndefinedVariable
582
requests.codes.not_found): # @UndefinedVariable
583
print('done')
584
try:
0 commit comments