Skip to content

Commit

Permalink
Update import & bump up version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenXie committed Dec 31, 2021
1 parent d0ae13a commit 21e60d1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion typertype/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .main import Typertype
__version__ = "1.0.1"
__version__ = "1.1.0"
8 changes: 4 additions & 4 deletions typertype/src/general.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .words_mode import Typer_words
from .time_mode import Typer_time
from .quotes_mode import Typer_quotes
from . import words_mode
from . import time_mode
from . import quotes_mode


class Typer(Typer_words,Typer_time, Typer_quotes):
class Typer(words_mode.Typer_words,time_mode.Typer_time, quotes_mode.Typer_quotes):
pass
4 changes: 2 additions & 2 deletions typertype/src/time_mode.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import random
import curses
import time
from .main import Typer_base
from . import main

class Typer_time(Typer_base):
class Typer_time(main.Typer_base):
def test_set(self,stdscr):
started = False
l, r = 0, self.WIN_X-self.X-1
Expand Down
4 changes: 2 additions & 2 deletions typertype/src/words_mode.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import random
import curses
import time
from .main import Typer_base
from . import main

class Typer_words(Typer_base):
class Typer_words(main.Typer_base):
def practice_set(self,stdscr):
started = False
l, r = 0, self.WIN_X-self.X-1
Expand Down

0 comments on commit 21e60d1

Please sign in to comment.