Skip to content

Commit 4e4de92

Browse files
committed
Fix linter issues
1 parent 4476333 commit 4e4de92

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

python-first-steps/imports.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import math # Module import
2+
from math import pi as PI # Import with alias
3+
from math import sqrt # Function import
24

35
print(math.sqrt(16))
46

5-
from math import sqrt # Function import
6-
77
print(sqrt(25))
88

9-
from math import pi as PI # Import with alias
10-
119
print(PI)

0 commit comments

Comments
 (0)