Skip to content

Commit

Permalink
formater changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vgoehler committed Jan 3, 2020
1 parent 949f378 commit d31d388
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/python_eulerian_video_magnification/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
Also see (1) from http://click.pocoo.org/5/setuptools/#setuptools-integration
"""
import logging
import argparse
import logging
import os.path
from typing import IO

Expand Down Expand Up @@ -125,4 +125,3 @@ def main(args=None):

Magnify(cli.get_file.name, low=cli.get_low, high=cli.get_high, levels=cli.get_levels,
amplification=cli.get_amplification)

3 changes: 2 additions & 1 deletion src/python_eulerian_video_magnification/filter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-

import numpy as np
from scipy import signal as signal, fftpack as fftpack
from scipy import fftpack as fftpack
from scipy import signal as signal


def butter_bandpass_filter(data, lowcut, highcut, fs, order=5):
Expand Down

0 comments on commit d31d388

Please sign in to comment.