Skip to content

Commit

Permalink
chore: fixed nimalyzer error
Browse files Browse the repository at this point in the history
FossilOrigin-Name: 1081cd6a4b34a9c85f2754856f5fe58a9c5e085639d01f825982c71677cbc036
  • Loading branch information
thindil committed Oct 28, 2024
1 parent 0bdfffd commit 63c63e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/history.nim
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Standard library imports
import std/[os, paths, strutils, times]
# External modules imports
import ansiparse, contracts, nancy, termstyle
import ansiparse, contracts, nancy, nimalyzer, termstyle
import norm/[model, pragmas, sqlite]
import norm/private/log
# Internal imports
Expand All @@ -42,7 +42,7 @@ const historyCommands: seq[string] = @["clear", "list", "find"]
type
HistoryRange* = ExtendedNatural
## Used to store the amount of commands in the shell's history
HistoryEntry* {.tableName: "history".} = ref object of Model
HistoryEntry* {.tableName: "history", ruleOff: "objects".} = ref object of Model
## Data structure for the shell's commands' history entry
##
## * command - the command executed by the user
Expand Down

0 comments on commit 63c63e5

Please sign in to comment.