Skip to content

Commit a8a0973

Browse files
authored
Cleaned up import statements in __main__.py
1 parent f45859b commit a8a0973

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

firedpy/__main__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# -*- coding: utf-8 -*-
22
import argparse
3-
from .functions import DataGetter, ModelBuilder
43
import os
54
import tempfile
65
import time
76
import warnings
7+
8+
from .functions import DataGetter, ModelBuilder
9+
810
warnings.filterwarnings("ignore", category=FutureWarning)
911

10-
# Checkout http://effbot.org/zone/stupid-exceptions-keyboardinterrupt.htm
1112

1213
def main():
1314
# Start the timer (seconds)

0 commit comments

Comments
 (0)