diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2019-09-11 14:38:31 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-09-11 14:38:31 +0200 |
commit | da9b0b3e667ab71eeb85ffaa46d09d031b1de4a9 (patch) | |
tree | 9b0c8f766624626fd8d3c5b00fd084c335aee9d9 /astroid/helpers.py | |
parent | ca33d65fa1aa255617ec92665dc30cdd831c587f (diff) | |
download | astroid-git-da9b0b3e667ab71eeb85ffaa46d09d031b1de4a9.tar.gz |
Fix linting errors
Diffstat (limited to 'astroid/helpers.py')
-rw-r--r-- | astroid/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/helpers.py b/astroid/helpers.py index 69d6efea..942b0a02 100644 --- a/astroid/helpers.py +++ b/astroid/helpers.py @@ -197,7 +197,7 @@ def _type_check(type1, type2): def is_subtype(type1, type2): """Check if *type1* is a subtype of *type2*.""" - return _type_check(type2, type1) + return _type_check(type1=type2, type2=type1) def is_supertype(type1, type2): |