Skip to content

Commit 75ac6c3

Browse files
authored
Clean up docstring in myleap.py
Removed unnecessary docstring comments from the module.
1 parent 8aa1088 commit 75ac6c3

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

myleap.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
"""A simple module."""
2-
3-
41
def is_leap(yy):
52
"""Functin to check given year is leap or not."""
63
return yy % 400 == 0 or (yy%4==0 and yy % 100 != 0)

0 commit comments

Comments
 (0)