Navigation Menu

Skip to content

Commit

Permalink
Rubocop fix: Style/IndentationWidth
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Apr 20, 2017
1 parent 43cfba2 commit 5704890
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/modules/DASDController.rb
Expand Up @@ -231,9 +231,9 @@ def Export
end

l = Builtins.maplist(active_devices) do |_i, d|
Builtins.filter(d) do |k, _v|
Builtins.contains(["channel", "format", "diag"], k)
end
Builtins.filter(d) do |k, _v|
Builtins.contains(["channel", "format", "diag"], k)
end
end

{
Expand Down
4 changes: 2 additions & 2 deletions src/modules/ZFCPController.rb
Expand Up @@ -340,7 +340,7 @@ def GetControllers
end

@controllers = Builtins.maplist(@controllers) do |c|
Builtins.filter(c) do |k, _v|
Builtins.filter(c) do |k, _v|
Builtins.contains(["sysfs_bus_id"], k)
end
end
Expand Down Expand Up @@ -392,7 +392,7 @@ def ProbeDisks
)

disks_tapes = Builtins.maplist(disks_tapes) do |d|
Builtins.filter(d) do |k, _v|
Builtins.filter(d) do |k, _v|
Builtins.contains(["dev_name", "detail", "vendor", "device"], k)
end
end
Expand Down

0 comments on commit 5704890

Please sign in to comment.