Skip to content

Commit 72ba37d

Browse files
Flake8 fix
1 parent 1f32e6b commit 72ba37d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SoftLayer/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def resolve_ids(identifier, resolvers):
273273
"""
274274

275275
# Before doing anything, let's see if this is an integer
276-
if type(identifier) == int:
276+
if isinstance(identifier, int):
277277
return [int(identifier)]
278278
# It was worth a shot
279279

0 commit comments

Comments
 (0)