Skip to content

Commit ebcf0d1

Browse files
committed
pycodestyle fix
1 parent b5d2942 commit ebcf0d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pygccxml/declarations/type_traits.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ def is_std_string(type_):
513513
type_ = remove_alias(type_)
514514
type_ = remove_reference(type_)
515515
type_ = remove_cv(type_)
516-
return type_.decl_string.replace(' ','') in string_equivalences
516+
return type_.decl_string.replace(' ', '') in string_equivalences
517517

518518

519519
def is_std_wstring(type_):
@@ -528,7 +528,7 @@ def is_std_wstring(type_):
528528
type_ = remove_alias(type_)
529529
type_ = remove_reference(type_)
530530
type_ = remove_cv(type_)
531-
return type_.decl_string.replace(' ','') in wstring_equivalences
531+
return type_.decl_string.replace(' ', '') in wstring_equivalences
532532

533533

534534
def is_std_ostream(type_):
@@ -543,7 +543,7 @@ def is_std_ostream(type_):
543543
type_ = remove_alias(type_)
544544
type_ = remove_reference(type_)
545545
type_ = remove_cv(type_)
546-
return type_.decl_string.replace(' ','') in ostream_equivalences
546+
return type_.decl_string.replace(' ', '') in ostream_equivalences
547547

548548

549549
def is_std_wostream(type_):
@@ -558,4 +558,4 @@ def is_std_wostream(type_):
558558
type_ = remove_alias(type_)
559559
type_ = remove_reference(type_)
560560
type_ = remove_cv(type_)
561-
return type_.decl_string.replace(' ','') in wostream_equivalences
561+
return type_.decl_string.replace(' ', '') in wostream_equivalences

0 commit comments

Comments
 (0)