Skip to content

Commit

Permalink
Fixed a <TAB> character to make eslint happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjcole committed May 25, 2017
1 parent ed0059a commit 4e1f819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batavia/builtins/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function bin(args, kwargs) {
var obj = args[0]

if (!types.isinstance(obj, types.Int) &&
!types.isinstance(obj, types.Bool)) {
!types.isinstance(obj, types.Bool)) {
throw new exceptions.TypeError.$pyclass(
"'" + type_name(obj) + "' object cannot be interpreted as an integer")
}
Expand Down

0 comments on commit 4e1f819

Please sign in to comment.