Skip to content

Commit

Permalink
Fixed isort errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Meisterschueler committed Dec 28, 2020
1 parent 4486252 commit 159bcc7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions flydenity/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"""

import sys

from flydenity import Parser


Expand Down
3 changes: 1 addition & 2 deletions flydenity/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
Main parser for Regexs that exist within the dataset
"""

import csv
import os
import re
import csv


CURRENT_PATH = os.path.dirname(__file__)
DATASET_FILES = {
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
from os import path
from os import getenv
from os import getenv, path

from dotenv import load_dotenv
from setuptools import find_packages, setup

load_dotenv()

Expand Down
4 changes: 2 additions & 2 deletions tests/test_consistency.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
import re
import json
import re
import unittest

from flydenity import Parser

Expand Down

0 comments on commit 159bcc7

Please sign in to comment.