Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ddssff committed Dec 3, 2024
1 parent bd48428 commit 234021b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Data/SafeCopy/Derive.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ module Data.SafeCopy.Derive

import Data.Generics.Labels ()

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.10 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.6 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.4 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.8 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.2 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.8 macos-latest

Could not find module ‘Data.Generics.Labels’.

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.0 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.4 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.8 ubuntu-latest

Could not find module ‘Data.Generics.Labels’.

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.6 ubuntu-latest

Could not find module ‘Data.Generics.Labels’

Check failure on line 24 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.8 windows-latest

Could not find module `Data.Generics.Labels'.
import Data.Serialize (getWord8, putWord8, label)
import Data.SafeCopy.Internal (Version(unVersion), SafeCopy(version, kind, errorTypeName, getCopy, putCopy), contain, getSafePut, getSafeGet, safeGet, safePut,)

import Data.SafeCopy.SafeCopy (Version(unVersion), SafeCopy(version, kind, errorTypeName, getCopy, putCopy), contain, getSafePut, getSafeGet, safeGet, safePut)
import Language.Haskell.TH hiding (Kind)
import Control.Lens ((%=), _3, over, set, use, view)

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.10 ubuntu-latest

Could not find module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.6 ubuntu-latest

Could not load module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.4 ubuntu-latest

Could not find module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 8.8 ubuntu-latest

Could not find module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.2 ubuntu-latest

Could not find module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.8 macos-latest

Could not find module ‘Control.Lens’.

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.0 ubuntu-latest

Could not find module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.4 ubuntu-latest

Could not find module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.8 ubuntu-latest

Could not find module ‘Control.Lens’.

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.6 ubuntu-latest

Could not find module ‘Control.Lens’

Check failure on line 28 in src/Data/SafeCopy/Derive.hs

View workflow job for this annotation

GitHub Actions / Stack 9.8 windows-latest

Could not find module `Control.Lens'.
import Control.Monad
Expand Down

0 comments on commit 234021b

Please sign in to comment.