Skip to content

Commit f6d5984

Browse files
committed
Pep8 cleanup
Cherry-picked from develop branch
1 parent 36b7930 commit f6d5984

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygccxml/declarations/type_traits.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1174,8 +1174,8 @@ def is_smart_pointer(type_):
11741174
(class_declaration.class_declaration_t,
11751175
class_declaration.class_t)):
11761176
return False
1177-
if not (impl_details.is_defined_in_xxx('boost', type_) or \
1178-
impl_details.is_defined_in_xxx('std', type_)):
1177+
if not (impl_details.is_defined_in_xxx('boost', type_) or
1178+
impl_details.is_defined_in_xxx('std', type_)):
11791179
return False
11801180
return type_.decl_string.startswith('::boost::shared_ptr<') or \
11811181
type_.decl_string.startswith('::std::shared_ptr<')

0 commit comments

Comments
 (0)