Skip to content

Commit

Permalink
looks like i am not that smart
Browse files Browse the repository at this point in the history
  • Loading branch information
moiSentineL committed Jul 23, 2024
1 parent aa4df5c commit 9cf782c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions flomo/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import click
import click_aliases

import flomo.conf as conf
import flomo.config as conf
import flomo.errors as errors
import flomo.helpers as helpers
import flomo.tracker as tracker
Expand All @@ -30,8 +30,8 @@ def init():
db.create_table()
db.conn.close()

config = conf.Config(initializing=True)
config.create_config()
config_ = conf.Config(initializing=True)
config_.create_config()


default_tag, default_name = conf.get_default_session_data()
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion flomo/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from playsound import playsound

import flomo.conf as config
import flomo.config as config
import flomo.errors as errors


Expand Down
2 changes: 1 addition & 1 deletion flomo/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from rich.panel import Panel
from rich.text import Text

import flomo.conf as config
import flomo.config as config
import flomo.helpers as helpers
import flomo.tracker as tracker

Expand Down

0 comments on commit 9cf782c

Please sign in to comment.