Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 8fdf769

Browse files
author
MikhailArkhipov
committed
Formatting
1 parent 28f5b6c commit 8fdf769

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Analysis/Ast/Impl/Analyzer/Symbols/SymbolCollector.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
using System.Collections.Generic;
1818
using System.Linq;
1919
using Microsoft.Python.Analysis.Analyzer.Evaluation;
20-
using Microsoft.Python.Analysis.Diagnostics;
2120
using Microsoft.Python.Analysis.Types;
2221
using Microsoft.Python.Analysis.Values;
2322
using Microsoft.Python.Core;
@@ -47,8 +46,8 @@ private SymbolCollector(ModuleSymbolTable table, ExpressionEval eval) {
4746

4847
private void Walk() => _eval.Ast.Walk(this);
4948

50-
public override bool Walk(IfStatement node)
51-
=> node.WalkIfWithSystemConditions(this, _eval.Ast.LanguageVersion, _eval.Services.GetService< IOSPlatform>().IsWindows);
49+
public override bool Walk(IfStatement node)
50+
=> node.WalkIfWithSystemConditions(this, _eval.Ast.LanguageVersion, _eval.Services.GetService<IOSPlatform>().IsWindows);
5251

5352
public override bool Walk(ClassDefinition cd) {
5453
if (IsDeprecated(cd)) {

src/Analysis/Ast/Test/ConditionalsTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
// permissions and limitations under the License.
1515

1616
using System.Threading.Tasks;
17-
using FluentAssertions;
1817
using Microsoft.Python.Analysis.Tests.FluentAssertions;
1918
using Microsoft.Python.Analysis.Types;
2019
using Microsoft.Python.Core.IO;

0 commit comments

Comments
 (0)