Skip to content

Commit

Permalink
Cleaned up import statements in __main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lisestdenis committed Aug 14, 2020
1 parent f45859b commit a8a0973
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions firedpy/__main__.py
@@ -1,13 +1,14 @@
# -*- coding: utf-8 -*-
import argparse
from .functions import DataGetter, ModelBuilder
import os
import tempfile
import time
import warnings

from .functions import DataGetter, ModelBuilder

warnings.filterwarnings("ignore", category=FutureWarning)

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

def main():
# Start the timer (seconds)
Expand Down

0 comments on commit a8a0973

Please sign in to comment.