Skip to content

Commit

Permalink
Added configuration for isort, travis.yml removed
Browse files Browse the repository at this point in the history
  • Loading branch information
GardenTools committed Apr 9, 2021
1 parent 042ad38 commit b05ce84
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/crcengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@
# along with crcengine. If not, see <https://www.gnu.org/licenses/>.


from .version import __version__
from .algorithms import (
AlgorithmNotFoundError,
algorithms_available,
get_algorithm_params,
register_algorithm,
unregister_algorithm,
)
from .calc import (
new,
bit_reverse_byte,
bit_reverse_n,
create,
create_generic,
create_msb_table,
create_lsb_table,
bit_reverse_byte,
bit_reverse_n,
create_msb_table,
get_bits_max_value,
)
from .algorithms import (
get_algorithm_params,
algorithms_available,
register_algorithm,
unregister_algorithm,
AlgorithmNotFoundError,
new,
)
from .codegen import generate_code, generate_test
from .version import __version__

0 comments on commit b05ce84

Please sign in to comment.