Skip to content

Commit 9ebd432

Browse files
authored
Move module docstring above import statements
1 parent 73c984c commit 9ebd432

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

NextTrainDisplay.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/usr/bin/python3
2+
"""Make a visual display that contains live information about the next trains
3+
to depart a given SEPTA Regional Rail station using SEPTA's API.
4+
"""
5+
26
from tkinter import *
37
from tkinter import ttk
48
import urllib.request
59
import time
610
import datetime
7-
"""Make a visual display that contains live information about the next trains
8-
to depart a given SEPTA Regional Rail station using SEPTA's API.
9-
"""
1011

1112

1213
def get_data_from_api():

0 commit comments

Comments
 (0)