fix: fix shit
This commit is contained in:
0
BallanceTasSonnet/python/blctas/_blctas/__init__.py
Normal file
0
BallanceTasSonnet/python/blctas/_blctas/__init__.py
Normal file
@@ -1,4 +1,8 @@
|
||||
from . import _blctas
|
||||
print(dir(_blctas))
|
||||
print(_blctas)
|
||||
print(dir(_blctas.tasfile))
|
||||
print(_blctas.tasfile)
|
||||
from _blctas import tasfile
|
||||
from _blctas.tasfile import TasFile, TasKey
|
||||
from _blctas.tasfile import create, load, save
|
||||
|
||||
@@ -12,7 +12,8 @@ mod blctas {
|
||||
#[pymodule(submodule)]
|
||||
/// Provides functionality for handling Ballance TAS files loading, saving and editing.
|
||||
mod tasfile {
|
||||
use pyo3::{exceptions::PyRuntimeError, prelude::*};
|
||||
use pyo3::prelude::*;
|
||||
use pyo3::exceptions::PyRuntimeError;
|
||||
use crate::wrapped::tasfile::{
|
||||
Error as RsTasError, TasFile as RsTasFile, TasFrame as RsTasFrame, TasKey as RsTasKey
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user